mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
129 lines
2.8 KiB
Python
129 lines
2.8 KiB
Python
from django import forms
|
|
|
|
from extras.models import Tag
|
|
from netbox.forms import NetBoxModelForm
|
|
from tenancy.models import *
|
|
from utilities.forms import (
|
|
BootstrapMixin, CommentField, DynamicModelChoiceField, DynamicModelMultipleChoiceField, SlugField, SmallTextarea,
|
|
StaticSelect,
|
|
)
|
|
|
|
__all__ = (
|
|
'ContactAssignmentForm',
|
|
'ContactForm',
|
|
'ContactGroupForm',
|
|
'ContactRoleForm',
|
|
'TenantForm',
|
|
'TenantGroupForm',
|
|
)
|
|
|
|
|
|
#
|
|
# Tenants
|
|
#
|
|
|
|
class TenantGroupForm(NetBoxModelForm):
|
|
parent = DynamicModelChoiceField(
|
|
queryset=TenantGroup.objects.all(),
|
|
required=False
|
|
)
|
|
slug = SlugField()
|
|
|
|
class Meta:
|
|
model = TenantGroup
|
|
fields = [
|
|
'parent', 'name', 'slug', 'description', 'tags',
|
|
]
|
|
|
|
|
|
class TenantForm(NetBoxModelForm):
|
|
slug = SlugField()
|
|
group = DynamicModelChoiceField(
|
|
queryset=TenantGroup.objects.all(),
|
|
required=False
|
|
)
|
|
comments = CommentField()
|
|
|
|
fieldsets = (
|
|
('Tenant', ('name', 'slug', 'group', 'description', 'tags')),
|
|
)
|
|
|
|
class Meta:
|
|
model = Tenant
|
|
fields = (
|
|
'name', 'slug', 'group', 'description', 'comments', 'tags',
|
|
)
|
|
|
|
|
|
#
|
|
# Contacts
|
|
#
|
|
|
|
class ContactGroupForm(NetBoxModelForm):
|
|
parent = DynamicModelChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
required=False
|
|
)
|
|
slug = SlugField()
|
|
|
|
class Meta:
|
|
model = ContactGroup
|
|
fields = ('parent', 'name', 'slug', 'description', 'tags')
|
|
|
|
|
|
class ContactRoleForm(NetBoxModelForm):
|
|
slug = SlugField()
|
|
|
|
class Meta:
|
|
model = ContactRole
|
|
fields = ('name', 'slug', 'description', 'tags')
|
|
|
|
|
|
class ContactForm(NetBoxModelForm):
|
|
group = DynamicModelChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
required=False
|
|
)
|
|
comments = CommentField()
|
|
|
|
fieldsets = (
|
|
('Contact', ('group', 'name', 'title', 'phone', 'email', 'address', 'tags')),
|
|
)
|
|
|
|
class Meta:
|
|
model = Contact
|
|
fields = (
|
|
'group', 'name', 'title', 'phone', 'email', 'address', 'comments', 'tags',
|
|
)
|
|
widgets = {
|
|
'address': SmallTextarea(attrs={'rows': 3}),
|
|
}
|
|
|
|
|
|
class ContactAssignmentForm(BootstrapMixin, forms.ModelForm):
|
|
group = DynamicModelChoiceField(
|
|
queryset=ContactGroup.objects.all(),
|
|
required=False,
|
|
initial_params={
|
|
'contacts': '$contact'
|
|
}
|
|
)
|
|
contact = DynamicModelChoiceField(
|
|
queryset=Contact.objects.all(),
|
|
query_params={
|
|
'group_id': '$group'
|
|
}
|
|
)
|
|
role = DynamicModelChoiceField(
|
|
queryset=ContactRole.objects.all()
|
|
)
|
|
|
|
class Meta:
|
|
model = ContactAssignment
|
|
fields = (
|
|
'group', 'contact', 'role', 'priority',
|
|
)
|
|
widgets = {
|
|
'priority': StaticSelect(),
|
|
}
|