Skip to content

Commit

Permalink
Tweaking list_filter on Entry
Browse files Browse the repository at this point in the history
git-svn-id: http://coltrane-blog.googlecode.com/svn/trunk@57 5f8205a5-902a-0410-8b63-8f478ce83d95
  • Loading branch information
ubernostrum committed Aug 24, 2007
1 parent 69451db commit 031fbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.py
Expand Up @@ -123,7 +123,7 @@ class Admin:
('tags', 'categories') }),
)
list_display = ('title', 'pub_date', 'author', 'status', 'enable_comments', '_get_comment_count')
list_filter = ('status',)
list_filter = ('status', 'categories')
search_fields = ('excerpt', 'body', 'title')

def __unicode__(self):
Expand Down

0 comments on commit 031fbc3

Please sign in to comment.