2017-06-25 22:50:55 +00:00
|
|
|
# Re2o un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
|
|
|
# Copyright © 2017 Goulven Kermarec
|
|
|
|
# Copyright © 2017 Augustin Lemesle
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2017-10-14 04:03:53 +00:00
|
|
|
"""
|
|
|
|
Formulaire d'edition des réglages : user, machine, topologie, asso...
|
|
|
|
"""
|
2017-06-25 22:50:55 +00:00
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-10-14 04:03:53 +00:00
|
|
|
from django.forms import ModelForm, Form
|
2017-06-25 22:50:55 +00:00
|
|
|
from django import forms
|
2018-08-05 16:48:35 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2018-07-26 19:53:32 +00:00
|
|
|
from re2o.mixins import FormRevMixin
|
2018-04-16 03:28:27 +00:00
|
|
|
from .models import (
|
|
|
|
OptionalUser,
|
|
|
|
OptionalMachine,
|
|
|
|
OptionalTopologie,
|
|
|
|
GeneralOption,
|
|
|
|
AssoOption,
|
|
|
|
MailMessageOption,
|
2018-04-16 16:22:51 +00:00
|
|
|
HomeOption,
|
2018-06-30 17:19:40 +00:00
|
|
|
Service,
|
2018-09-19 21:24:03 +00:00
|
|
|
MailContact,
|
2018-07-10 23:07:31 +00:00
|
|
|
Reminder,
|
2018-07-11 00:19:29 +00:00
|
|
|
RadiusKey,
|
2018-09-19 21:24:03 +00:00
|
|
|
SwitchManagementCred,
|
2018-12-02 16:03:27 +00:00
|
|
|
RadiusOption,
|
2019-01-20 23:54:02 +00:00
|
|
|
CotisationsOption,
|
2019-09-09 15:04:30 +00:00
|
|
|
DocumentTemplate,
|
|
|
|
RadiusAttribute
|
2018-04-16 03:28:27 +00:00
|
|
|
)
|
2018-09-19 21:24:03 +00:00
|
|
|
from topologie.models import Switch
|
2017-06-25 22:50:55 +00:00
|
|
|
|
2019-01-20 23:54:02 +00:00
|
|
|
|
2017-08-24 19:36:59 +00:00
|
|
|
class EditOptionalUserForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Formulaire d'édition des options de l'user. (solde, telephone..)"""
|
2017-06-25 22:50:55 +00:00
|
|
|
class Meta:
|
|
|
|
model = OptionalUser
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditOptionalUserForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-04-13 23:42:22 +00:00
|
|
|
self.fields['is_tel_mandatory'].label = (
|
2018-08-05 16:48:35 +00:00
|
|
|
_("Telephone number required")
|
2018-04-13 23:42:22 +00:00
|
|
|
)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['gpg_fingerprint'].label = _("GPG fingerprint")
|
|
|
|
self.fields['all_can_create_club'].label = _("All can create a club")
|
|
|
|
self.fields['all_can_create_adherent'].label = _("All can create a member")
|
|
|
|
self.fields['self_adhesion'].label = _("Self registration")
|
|
|
|
self.fields['shell_default'].label = _("Default shell")
|
2017-10-14 04:03:53 +00:00
|
|
|
|
2017-06-25 22:50:55 +00:00
|
|
|
|
2017-08-24 19:36:59 +00:00
|
|
|
class EditOptionalMachineForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Options machines (max de machines, etc)"""
|
2017-06-25 22:50:55 +00:00
|
|
|
class Meta:
|
|
|
|
model = OptionalMachine
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditOptionalMachineForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['password_machine'].label = _("Possibility to set a"
|
|
|
|
" password per machine")
|
|
|
|
self.fields['max_lambdauser_interfaces'].label = _("Maximum number of"
|
|
|
|
" interfaces"
|
|
|
|
" allowed for a"
|
|
|
|
" standard user")
|
|
|
|
self.fields['max_lambdauser_aliases'].label = _("Maximum number of DNS"
|
|
|
|
" aliases allowed for"
|
|
|
|
" a standard user")
|
|
|
|
self.fields['ipv6_mode'].label = _("IPv6 mode")
|
|
|
|
self.fields['create_machine'].label = _("Can create a machine")
|
2017-10-14 04:03:53 +00:00
|
|
|
|
2017-06-25 22:50:55 +00:00
|
|
|
|
2017-08-26 13:10:18 +00:00
|
|
|
class EditOptionalTopologieForm(ModelForm):
|
2018-07-09 19:05:50 +00:00
|
|
|
"""Options de topologie, formulaire d'edition (vlan par default etc)
|
|
|
|
On rajoute un champ automatic provision switchs pour gérer facilement
|
|
|
|
l'ajout de switchs au provisionning automatique"""
|
|
|
|
automatic_provision_switchs = forms.ModelMultipleChoiceField(
|
|
|
|
Switch.objects.all(),
|
|
|
|
required=False
|
|
|
|
)
|
|
|
|
|
2017-08-26 13:10:18 +00:00
|
|
|
class Meta:
|
|
|
|
model = OptionalTopologie
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditOptionalTopologieForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
|
2018-10-27 21:31:12 +00:00
|
|
|
self.initial['automatic_provision_switchs'] = Switch.objects.filter(automatic_provision=True).order_by('interface__domain__name')
|
2018-07-09 19:05:50 +00:00
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
instance = super().save(commit)
|
|
|
|
Switch.objects.all().update(automatic_provision=False)
|
|
|
|
self.cleaned_data['automatic_provision_switchs'].update(automatic_provision=True)
|
|
|
|
return instance
|
|
|
|
|
2017-06-25 22:50:55 +00:00
|
|
|
|
2017-08-24 19:36:59 +00:00
|
|
|
class EditGeneralOptionForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Options générales (affichages de résultats de recherche, etc)"""
|
2017-06-25 22:50:55 +00:00
|
|
|
class Meta:
|
|
|
|
model = GeneralOption
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditGeneralOptionForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-08-23 02:07:23 +00:00
|
|
|
self.fields['general_message_fr'].label = _("General message in French")
|
|
|
|
self.fields['general_message_en'].label = _("General message in English")
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['search_display_page'].label = _("Number of results"
|
|
|
|
" displayed when"
|
|
|
|
" searching")
|
|
|
|
self.fields['pagination_number'].label = _("Number of items per page,"
|
|
|
|
" standard size (e.g."
|
|
|
|
" users)")
|
|
|
|
self.fields['pagination_large_number'].label = _("Number of items per"
|
|
|
|
" page, large size"
|
|
|
|
" (e.g. machines)")
|
|
|
|
self.fields['req_expire_hrs'].label = _("Time before expiration of the"
|
|
|
|
" reset password link (in"
|
|
|
|
" hours)")
|
|
|
|
self.fields['site_name'].label = _("Website name")
|
|
|
|
self.fields['email_from'].label = _("Email address for automatic"
|
|
|
|
" emailing")
|
|
|
|
self.fields['GTU_sum_up'].label = _("Summary of the General Terms of"
|
|
|
|
" Use")
|
|
|
|
self.fields['GTU'].label = _("General Terms of Use")
|
2017-10-14 04:03:53 +00:00
|
|
|
|
2017-08-24 19:36:59 +00:00
|
|
|
|
|
|
|
class EditAssoOptionForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Options de l'asso (addresse, telephone, etc)"""
|
2017-08-24 19:36:59 +00:00
|
|
|
class Meta:
|
|
|
|
model = AssoOption
|
|
|
|
fields = '__all__'
|
|
|
|
|
2017-09-08 21:30:47 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditAssoOptionForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['name'].label = _("Organisation name")
|
|
|
|
self.fields['siret'].label = _("SIRET number")
|
|
|
|
self.fields['adresse1'].label = _("Address (line 1)")
|
|
|
|
self.fields['adresse2'].label = _("Address (line 2)")
|
|
|
|
self.fields['contact'].label = _("Contact email address")
|
|
|
|
self.fields['telephone'].label = _("Telephone number")
|
|
|
|
self.fields['pseudo'].label = _("Usual name")
|
|
|
|
self.fields['utilisateur_asso'].label = _("Account used for editing"
|
|
|
|
" from /admin")
|
|
|
|
self.fields['description'].label = _("Description")
|
2017-10-14 04:03:53 +00:00
|
|
|
|
2018-03-18 09:10:56 +00:00
|
|
|
|
2017-09-08 20:53:13 +00:00
|
|
|
class EditMailMessageOptionForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Formulaire d'edition des messages de bienvenue personnalisés"""
|
2017-09-08 20:53:13 +00:00
|
|
|
class Meta:
|
|
|
|
model = MailMessageOption
|
|
|
|
fields = '__all__'
|
|
|
|
|
2017-09-08 21:30:47 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-14 04:03:53 +00:00
|
|
|
super(EditMailMessageOptionForm, self).__init__(
|
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['welcome_mail_fr'].label = _("Message for the French"
|
|
|
|
" welcome email")
|
|
|
|
self.fields['welcome_mail_en'].label = _("Message for the English"
|
|
|
|
" welcome email")
|
2017-10-14 04:03:53 +00:00
|
|
|
|
2017-09-08 20:53:13 +00:00
|
|
|
|
2018-04-16 16:22:51 +00:00
|
|
|
class EditHomeOptionForm(ModelForm):
|
|
|
|
"""Edition forms of Home options"""
|
2018-04-16 03:28:27 +00:00
|
|
|
class Meta:
|
2018-04-16 16:22:51 +00:00
|
|
|
model = HomeOption
|
2018-04-16 03:28:27 +00:00
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2018-04-16 16:22:51 +00:00
|
|
|
super(EditHomeOptionForm, self).__init__(
|
2018-04-16 03:28:27 +00:00
|
|
|
*args,
|
|
|
|
prefix=prefix,
|
|
|
|
**kwargs
|
|
|
|
)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['facebook_url'].label = _("Facebook URL")
|
|
|
|
self.fields['twitter_url'].label = _("Twitter URL")
|
|
|
|
self.fields['twitter_account_name'].label = _("Twitter account name")
|
2018-04-16 03:28:27 +00:00
|
|
|
|
|
|
|
|
2018-12-02 16:03:27 +00:00
|
|
|
class EditRadiusOptionForm(ModelForm):
|
|
|
|
"""Edition forms for Radius options"""
|
|
|
|
class Meta:
|
|
|
|
model = RadiusOption
|
2018-12-04 13:59:23 +00:00
|
|
|
fields = '__all__'
|
2018-12-02 16:03:27 +00:00
|
|
|
|
2019-01-11 12:43:57 +00:00
|
|
|
def clean(self):
|
|
|
|
cleaned_data = super().clean()
|
|
|
|
ignored=('radius_general_policy', 'vlan_decision_ok')
|
|
|
|
fields = (
|
|
|
|
f for f in self.fields.keys()
|
|
|
|
if 'vlan' not in f and f not in ignored
|
|
|
|
)
|
|
|
|
for f in fields:
|
|
|
|
choice = cleaned_data.get(f)
|
|
|
|
vlan = cleaned_data.get(f+'_vlan')
|
|
|
|
if choice == RadiusOption.SET_VLAN and vlan is None:
|
|
|
|
self.add_error(
|
|
|
|
f,
|
|
|
|
_("You chose to set vlan but did not set any VLAN."),
|
|
|
|
)
|
|
|
|
self.add_error(
|
|
|
|
f+'_vlan',
|
|
|
|
_("Please, choose a VLAN."),
|
|
|
|
)
|
|
|
|
return cleaned_data
|
|
|
|
|
2018-12-02 16:03:27 +00:00
|
|
|
|
2019-01-03 21:34:45 +00:00
|
|
|
class EditCotisationsOptionForm(ModelForm):
|
|
|
|
"""Edition forms for Cotisations options"""
|
|
|
|
class Meta:
|
|
|
|
model = CotisationsOption
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
|
2017-08-25 02:35:49 +00:00
|
|
|
class ServiceForm(ModelForm):
|
2017-10-14 04:03:53 +00:00
|
|
|
"""Edition, ajout de services sur la page d'accueil"""
|
2017-08-24 19:36:59 +00:00
|
|
|
class Meta:
|
|
|
|
model = Service
|
|
|
|
fields = '__all__'
|
2017-08-25 02:35:49 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2017-10-08 23:34:49 +00:00
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(ServiceForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2018-08-05 16:48:35 +00:00
|
|
|
self.fields['name'].label = _("Name")
|
|
|
|
self.fields['url'].label = _("URL")
|
|
|
|
self.fields['description'].label = _("Description")
|
|
|
|
self.fields['image'].label = _("Image")
|
2017-10-08 20:22:04 +00:00
|
|
|
|
|
|
|
|
2017-10-14 04:03:53 +00:00
|
|
|
class DelServiceForm(Form):
|
|
|
|
"""Suppression de services sur la page d'accueil"""
|
|
|
|
services = forms.ModelMultipleChoiceField(
|
2017-12-13 17:56:16 +00:00
|
|
|
queryset=Service.objects.none(),
|
2018-08-05 16:48:35 +00:00
|
|
|
label=_("Current services"),
|
2017-10-14 04:03:53 +00:00
|
|
|
widget=forms.CheckboxSelectMultiple
|
|
|
|
)
|
2017-12-13 17:56:16 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
instances = kwargs.pop('instances', None)
|
|
|
|
super(DelServiceForm, self).__init__(*args, **kwargs)
|
|
|
|
if instances:
|
|
|
|
self.fields['services'].queryset = instances
|
|
|
|
else:
|
|
|
|
self.fields['services'].queryset = Service.objects.all()
|
2018-06-30 17:19:40 +00:00
|
|
|
|
2018-09-19 21:24:03 +00:00
|
|
|
class ReminderForm(FormRevMixin, ModelForm):
|
|
|
|
"""Edition, ajout de services sur la page d'accueil"""
|
|
|
|
class Meta:
|
|
|
|
model = Reminder
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(ReminderForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2018-07-10 23:07:31 +00:00
|
|
|
|
|
|
|
class RadiusKeyForm(FormRevMixin, ModelForm):
|
|
|
|
"""Edition, ajout de clef radius"""
|
|
|
|
members = forms.ModelMultipleChoiceField(
|
2018-09-19 21:24:03 +00:00
|
|
|
queryset=Switch.objects.all(),
|
2018-07-10 23:07:31 +00:00
|
|
|
required=False
|
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = RadiusKey
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(RadiusKeyForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
instance = kwargs.get('instance', None)
|
|
|
|
if instance:
|
|
|
|
self.initial['members'] = Switch.objects.filter(radius_key=instance)
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
instance = super().save(commit)
|
2018-07-11 00:19:29 +00:00
|
|
|
instance.switch_set = self.cleaned_data['members']
|
|
|
|
return instance
|
|
|
|
|
|
|
|
|
|
|
|
class SwitchManagementCredForm(FormRevMixin, ModelForm):
|
|
|
|
"""Edition, ajout de creds de management pour gestion
|
|
|
|
et interface rest des switchs"""
|
|
|
|
members = forms.ModelMultipleChoiceField(
|
|
|
|
Switch.objects.all(),
|
|
|
|
required=False
|
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = SwitchManagementCred
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(SwitchManagementCredForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
instance = kwargs.get('instance', None)
|
|
|
|
if instance:
|
|
|
|
self.initial['members'] = Switch.objects.filter(management_creds=instance)
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
instance = super().save(commit)
|
2018-07-10 23:07:31 +00:00
|
|
|
instance.switch_set = self.cleaned_data['members']
|
|
|
|
return instance
|
|
|
|
|
|
|
|
|
|
|
|
class MailContactForm(ModelForm):
|
|
|
|
"""Edition, ajout d'adresse de contact"""
|
2018-06-30 17:19:40 +00:00
|
|
|
class Meta:
|
|
|
|
model = MailContact
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(MailContactForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class DelMailContactForm(Form):
|
2018-07-26 19:53:32 +00:00
|
|
|
"""Delete contact email adress"""
|
2018-06-30 17:19:40 +00:00
|
|
|
mailcontacts = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=MailContact.objects.none(),
|
2019-01-08 23:39:47 +00:00
|
|
|
label=_("Current email addresses"),
|
2018-06-30 17:19:40 +00:00
|
|
|
widget=forms.CheckboxSelectMultiple
|
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
instances = kwargs.pop('instances', None)
|
|
|
|
super(DelMailContactForm, self).__init__(*args, **kwargs)
|
|
|
|
if instances:
|
|
|
|
self.fields['mailcontacts'].queryset = instances
|
|
|
|
else:
|
|
|
|
self.fields['mailcontacts'].queryset = MailContact.objects.all()
|
2018-08-05 16:48:35 +00:00
|
|
|
|
2019-01-20 23:54:02 +00:00
|
|
|
|
|
|
|
class DocumentTemplateForm(FormRevMixin, ModelForm):
|
|
|
|
"""
|
|
|
|
Form used to create a document template.
|
|
|
|
"""
|
|
|
|
class Meta:
|
|
|
|
model = DocumentTemplate
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(DocumentTemplateForm, self).__init__(
|
|
|
|
*args, prefix=prefix, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class DelDocumentTemplateForm(FormRevMixin, Form):
|
|
|
|
"""
|
|
|
|
Form used to delete one or more document templatess.
|
|
|
|
The use must choose the one to delete by checking the boxes.
|
|
|
|
"""
|
|
|
|
document_templates = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=DocumentTemplate.objects.none(),
|
|
|
|
label=_("Available document templates"),
|
|
|
|
widget=forms.CheckboxSelectMultiple
|
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
instances = kwargs.pop('instances', None)
|
|
|
|
super(DelDocumentTemplateForm, self).__init__(*args, **kwargs)
|
|
|
|
if instances:
|
|
|
|
self.fields['document_templates'].queryset = instances
|
|
|
|
else:
|
|
|
|
self.fields['document_templates'].queryset = Banque.objects.all()
|
2019-09-09 15:04:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RadiusAttributeForm(ModelForm):
|
|
|
|
"""Edit and add RADIUS attributes."""
|
|
|
|
class Meta:
|
|
|
|
model = RadiusAttribute
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
prefix = kwargs.pop('prefix', self.Meta.model.__name__)
|
|
|
|
super(RadiusAttributeForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class DelRadiusAttributeForm(Form):
|
|
|
|
"""Delete RADIUS attributes"""
|
|
|
|
attributes = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=RadiusAttribute.objects.none(),
|
|
|
|
label=_("Current attributes"),
|
|
|
|
widget=forms.CheckboxSelectMultiple
|
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
instances = kwargs.pop('instances', None)
|
|
|
|
super(DelServiceForm, self).__init__(*args, **kwargs)
|
|
|
|
if instances:
|
|
|
|
self.fields['attributes'].queryset = instances
|
|
|
|
else:
|
|
|
|
self.fields['attributes'].queryset = Attributes.objects.all()
|
|
|
|
|
|
|
|
|