summaryrefslogtreecommitdiff
path: root/chimere/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/admin.py')
-rw-r--r--chimere/admin.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/chimere/admin.py b/chimere/admin.py
index 24d28ed..977a9b4 100644
--- a/chimere/admin.py
+++ b/chimere/admin.py
@@ -244,6 +244,10 @@ class MultimediaTypeAdmin(admin.ModelAdmin):
list_display = ('name', 'media_type', 'mime_type', 'iframe', 'available')
list_filter = ('media_type', 'available')
+class MultimediaExtensionAdmin(admin.ModelAdmin):
+ list_display = ('name', 'multimedia_type')
+ list_filter = ('multimedia_type',)
+
class PropertyModelChoiceInline(admin.TabularInline):
model = PropertyModelChoice
extra = 1