mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 05:21:55 -06:00
Fix #8287 - Correct label in export template form
This commit is contained in:
parent
b0db5a8b0a
commit
10ec31df3e
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## v3.1.6 (FUTURE)
|
## v3.1.6 (FUTURE)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* [#8287](https://github.com/netbox-community/netbox/issues/8287) - Correct label in Export Template Form
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## v3.1.5 (2022-01-06)
|
## v3.1.5 (2022-01-06)
|
||||||
|
@ -82,7 +82,7 @@ class ExportTemplateForm(BootstrapMixin, forms.ModelForm):
|
|||||||
model = ExportTemplate
|
model = ExportTemplate
|
||||||
fields = '__all__'
|
fields = '__all__'
|
||||||
fieldsets = (
|
fieldsets = (
|
||||||
('Custom Link', ('name', 'content_type', 'description')),
|
('Export Template', ('name', 'content_type', 'description')),
|
||||||
('Template', ('template_code',)),
|
('Template', ('template_code',)),
|
||||||
('Rendering', ('mime_type', 'file_extension', 'as_attachment')),
|
('Rendering', ('mime_type', 'file_extension', 'as_attachment')),
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user