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

Fix #8287 - Correct label in export template form

This commit is contained in:
Daniel Sheppard
2022-01-08 00:13:58 -06:00
parent b0db5a8b0a
commit 10ec31df3e
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,10 @@
## 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)

View File

@ -82,7 +82,7 @@ class ExportTemplateForm(BootstrapMixin, forms.ModelForm):
model = ExportTemplate
fields = '__all__'
fieldsets = (
('Custom Link', ('name', 'content_type', 'description')),
('Export Template', ('name', 'content_type', 'description')),
('Template', ('template_code',)),
('Rendering', ('mime_type', 'file_extension', 'as_attachment')),
)