imagehosting/admin.py
2017-09-27 12:34:22 +03:00

8 lines
116 B
Python

from django.contrib import admin
from .models import Post
admin.site.register(Post
)
# Register your models here.