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

Closes #579: Add a description field to ExportTemplate

This commit is contained in:
Jeremy Stretch
2016-09-27 16:31:18 -04:00
parent 0900a6bf49
commit 187a6dee17
4 changed files with 29 additions and 3 deletions

View File

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