mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-01 05:50:23 +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)
|