4 lines
89 B
Python
4 lines
89 B
Python
from blog.models import Post
|
|
from django.contrib import admin
|
|
|
|
admin.site.register(Post)
|