mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
117 lines
2.8 KiB
Python
117 lines
2.8 KiB
Python
from django import forms
|
|
|
|
from extras.forms import AddRemoveTagsForm, CustomFieldModelBulkEditForm
|
|
from tenancy.models import *
|
|
from utilities.forms import DynamicModelChoiceField
|
|
|
|
__all__ = (
|
|
'ContactBulkEditForm',
|
|
'ContactGroupBulkEditForm',
|
|
'ContactRoleBulkEditForm',
|
|
'TenantBulkEditForm',
|
|
'TenantGroupBulkEditForm',
|
|
)
|
|
|
|
|
|
#
|
|
# Tenants
|
|
#
|
|
|
|
class TenantGroupBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=TenantGroup.objects.all(),
|
|
widget=forms.MultipleHiddenInput
|
|
)
|
|
parent = DynamicModelChoiceField(
|
|
queryset=TenantGroup.objects.all(),
|
|
required=False
|
|
)
|
|
description = forms.CharField(
|
|
max_length=200,
|
|
required=False
|
|
)
|
|
|
|
class Meta:
|
|
nullable_fields = ['parent', 'description']
|
|
|
|
|
|
class TenantBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=Tenant.objects.all(),
|
|
widget=forms.MultipleHiddenInput()
|
|
)
|
|
group = DynamicModelChoiceField(
|
|
queryset=TenantGroup.objects.all(),
|
|
required=False
|
|
)
|
|
|
|
class Meta:
|
|
nullable_fields = [
|
|
'group',
|
|
]
|
|
|
|
|
|
#
|
|
# Contacts
|
|
#
|
|
|
|
class ContactGroupBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
widget=forms.MultipleHiddenInput
|
|
)
|
|
parent = DynamicModelChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
required=False
|
|
)
|
|
description = forms.CharField(
|
|
max_length=200,
|
|
required=False
|
|
)
|
|
|
|
class Meta:
|
|
nullable_fields = ['parent', 'description']
|
|
|
|
|
|
class ContactRoleBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=ContactRole.objects.all(),
|
|
widget=forms.MultipleHiddenInput
|
|
)
|
|
description = forms.CharField(
|
|
max_length=200,
|
|
required=False
|
|
)
|
|
|
|
class Meta:
|
|
nullable_fields = ['description']
|
|
|
|
|
|
class ContactBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=Contact.objects.all(),
|
|
widget=forms.MultipleHiddenInput()
|
|
)
|
|
group = DynamicModelChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
required=False
|
|
)
|
|
title = forms.CharField(
|
|
max_length=100,
|
|
required=False
|
|
)
|
|
phone = forms.CharField(
|
|
max_length=50,
|
|
required=False
|
|
)
|
|
email = forms.EmailField(
|
|
required=False
|
|
)
|
|
address = forms.CharField(
|
|
max_length=200,
|
|
required=False
|
|
)
|
|
|
|
class Meta:
|
|
nullable_fields = ['group', 'title', 'phone', 'email', 'address', 'comments']
|