summaryrefslogtreecommitdiff
path: root/app/posts/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/admin.py')
-rw-r--r--app/posts/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/admin.py b/app/posts/admin.py
index 3c93411..eaf1a1c 100644
--- a/app/posts/admin.py
+++ b/app/posts/admin.py
@@ -38,7 +38,7 @@ class EntryAdmin(OSMGeoAdmin):
list_display = ('title', 'post_type', 'pub_date', 'template_name', 'status',)
search_fields = ['title', 'body_markdown']
prepopulated_fields = {"slug": ('title',)}
- list_filter = ('pub_date', 'enable_comments', 'status')
+ list_filter = ('post_type', 'pub_date', 'enable_comments', 'status')
filter_horizontal = ('related',)
fieldsets = (
('Entry', {