mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-18 15:10:30 +00:00
5 lines
123 B
Python
5 lines
123 B
Python
from django.contrib import admin
|
|
from .models import Post, Comment
|
|
|
|
admin.site.register(Post)
|
|
admin.site.register(Comment)
|