mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 10:16:42 -06:00
Added missing CSV header
This commit is contained in:
parent
b96e3af6c7
commit
a9fefbec5c
@ -48,7 +48,7 @@ class Tenant(CreatedUpdatedModel, CustomFieldModel):
|
|||||||
comments = models.TextField(blank=True)
|
comments = models.TextField(blank=True)
|
||||||
custom_field_values = GenericRelation(CustomFieldValue, content_type_field='obj_type', object_id_field='obj_id')
|
custom_field_values = GenericRelation(CustomFieldValue, content_type_field='obj_type', object_id_field='obj_id')
|
||||||
|
|
||||||
csv_headers = ['name', 'slug', 'group', 'description']
|
csv_headers = ['name', 'slug', 'group', 'description', 'comments']
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
ordering = ['group', 'name']
|
ordering = ['group', 'name']
|
||||||
|
Loading…
Reference in New Issue
Block a user