mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-09 09:21:08 +00:00
6 lines
123 B
Python
6 lines
123 B
Python
|
|
from django.contrib import admin
|
||
|
|
from .models import Post, Comment
|
||
|
|
|
||
|
|
admin.site.register(Post)
|
||
|
|
admin.site.register(Comment)
|