X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/54d1617957cfa3a8c9ffd714ad6c4bef09e727de..5adae760fc382cd1f3fdc7ee02f2b8cc0dc5cfa6:/philo/admin/nodes.py diff --git a/philo/admin/nodes.py b/philo/admin/nodes.py index 853ba25..46c456a 100644 --- a/philo/admin/nodes.py +++ b/philo/admin/nodes.py @@ -47,10 +47,12 @@ class RedirectAdmin(ViewAdmin): class FileAdmin(ViewAdmin): fieldsets = ( (None, { - 'fields': ('file', 'mimetype') + 'fields': ('name', 'file', 'mimetype') }), ) - list_display = ('mimetype', 'file') + list_display = ('name', 'mimetype', 'file') + search_fields = ('name',) + list_filter = ('mimetype',) admin.site.register(Node, NodeAdmin)