mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-16 22:20:24 +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)
|