Commit 0267ecd3 authored by nekopilar's avatar nekopilar

added post admin

parent 49d30643
from django.contrib import admin
# Register your models here.
from .models import Post
class PostAdmin(admin.ModelAdmin):
model = Post
admin.site.register(Post, PostAdmin)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment