1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Tweaked ExportTemplate admin display

This commit is contained in:
Jeremy Stretch
2016-09-21 11:57:05 -04:00
parent f8f973dac2
commit 33694030b7

View File

@ -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)