mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-17 12:42:52 -06:00
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from core.models import *
|
|
from netbox.forms import NetBoxModelBulkEditForm
|
|
from netbox.utils import get_data_backend_choices
|
|
from utilities.forms.fields import CommentField
|
|
from utilities.forms.widgets import BulkEditNullBooleanSelect
|
|
|
|
__all__ = (
|
|
'DataSourceBulkEditForm',
|
|
)
|
|
|
|
|
|
class DataSourceBulkEditForm(NetBoxModelBulkEditForm):
|
|
type = forms.ChoiceField(
|
|
label=_('Type'),
|
|
choices=get_data_backend_choices,
|
|
required=False
|
|
)
|
|
enabled = forms.NullBooleanField(
|
|
required=False,
|
|
widget=BulkEditNullBooleanSelect(),
|
|
label=_('Enabled')
|
|
)
|
|
description = forms.CharField(
|
|
label=_('Description'),
|
|
max_length=200,
|
|
required=False
|
|
)
|
|
comments = CommentField()
|
|
parameters = forms.JSONField(
|
|
label=_('Parameters'),
|
|
required=False
|
|
)
|
|
ignore_rules = forms.CharField(
|
|
label=_('Ignore rules'),
|
|
required=False,
|
|
widget=forms.Textarea()
|
|
)
|
|
|
|
model = DataSource
|
|
fieldsets = (
|
|
(None, ('type', 'enabled', 'description', 'comments', 'parameters', 'ignore_rules')),
|
|
)
|
|
nullable_fields = (
|
|
'description', 'description', 'parameters', 'comments', 'parameters', 'ignore_rules',
|
|
)
|