diff options
Diffstat (limited to 'bn_django/photos')
-rw-r--r-- | bn_django/photos/models.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/photos/models.py b/bn_django/photos/models.py index 33b2e0a..925f91b 100644 --- a/bn_django/photos/models.py +++ b/bn_django/photos/models.py @@ -90,7 +90,10 @@ class Photo(models.Model): get_latest_by = ['date'] class Admin: - ordering = ['date'] + list_display = ('title', 'date', 'gallery', 'id') + ordering = ['id'] + list_filter = ['gallery'] + search_fields = ['title'] def __str__(self): return self.title |