Przeglądaj źródła

Fix #8287 - Correct label in export template form

Daniel Sheppard 4 lat temu
rodzic
commit
10ec31df3e

+ 4 - 0
docs/release-notes/version-3.1.md

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

+ 1 - 1
netbox/extras/forms/models.py

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