Browse Source

Tweaked ExportTemplate admin display

Jeremy Stretch 8 years ago
parent
commit
33694030b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/extras/admin.py

+ 1 - 1
netbox/extras/admin.py

@@ -40,7 +40,7 @@ class GraphAdmin(admin.ModelAdmin):
 
 @admin.register(ExportTemplate)
 class ExportTemplateAdmin(admin.ModelAdmin):
-    list_display = ['content_type', 'name', 'mime_type', 'file_extension']
+    list_display = ['name', 'content_type', 'mime_type', 'file_extension']
 
 
 @admin.register(TopologyMap)