We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4930b commit 83dad6fCopy full SHA for 83dad6f
netbox/extras/forms/bulk_import.py
@@ -116,6 +116,12 @@ class CustomLinkImportForm(CSVModelForm):
116
queryset=ContentType.objects.with_feature('custom_links'),
117
help_text=_("One or more assigned object types")
118
)
119
+ button_class = CSVChoiceField(
120
+ label=_('button class'),
121
+ required=False,
122
+ choices=CustomLinkButtonClassChoices,
123
+ help_text=_('The class of the first link in a group will be used for the dropdown button')
124
+ )
125
126
class Meta:
127
model = CustomLink
0 commit comments