Commit 59c37344 authored by Norberto Tadeo's avatar Norberto Tadeo 😔

changed display order for django admin in forum section

parent d4f024ad
......@@ -6,7 +6,7 @@ class ForumAdmin(admin.ModelAdmin):
model = Post
search_fields=('pub_date','post_title',)
list_display=('pub_date','post_title',)
list_display=('post_title','pub_date',)
list_filter=('pub_date','post_title',)
admin.site.register(Post, ForumAdmin)
......
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