3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-07-02 20:14:05 +00:00
coope/preferences/forms.py

40 lines
1.4 KiB
Python
Raw Normal View History

2018-10-05 22:03:02 +00:00
from django import forms
2018-11-22 21:52:15 +00:00
from django.core.exceptions import ValidationError
2018-10-05 22:03:02 +00:00
from .models import Cotisation, PaymentMethod, GeneralPreferences
class CotisationForm(forms.ModelForm):
2018-12-02 15:28:40 +00:00
"""
2019-02-28 12:18:41 +00:00
Form to add and edit :class:`~preferences.models.Cotisation`.
2018-12-02 15:28:40 +00:00
"""
2018-10-05 22:03:02 +00:00
class Meta:
model = Cotisation
fields = "__all__"
class PaymentMethodForm(forms.ModelForm):
2018-12-02 15:28:40 +00:00
"""
2019-02-28 12:18:41 +00:00
Form to add and edit :class:`~preferences.models.PaymentMethod`.
2018-12-02 15:28:40 +00:00
"""
2018-10-05 22:03:02 +00:00
class Meta:
model = PaymentMethod
fields = "__all__"
class GeneralPreferencesForm(forms.ModelForm):
2018-12-02 15:28:40 +00:00
"""
2019-02-28 12:18:41 +00:00
Form to edit the :class:`~preferences.models.GeneralPreferences`.
2018-12-02 15:28:40 +00:00
"""
2018-10-05 22:03:02 +00:00
class Meta:
model = GeneralPreferences
fields = "__all__"
widgets = {
'global_message': forms.Textarea(attrs={'placeholder': 'Message global à afficher sur le site'}),
'active_message': forms.Textarea(attrs={'placeholder': 'Ce message s\'affichera si le site n\'est pas actif'}),
'president': forms.TextInput(attrs={'placeholder': 'Président'}),
'secretary': forms.TextInput(attrs={'placeholder': 'Secrétaire'}),
'treasurer': forms.TextInput(attrs={'placeholder': 'Trésorier'}),
'phoenixTM_responsible': forms.TextInput(attrs={'placeholder': 'Responsable Phœnix Technopôle Metz'}),
2019-01-19 22:39:48 +00:00
'home_text': forms.Textarea(attrs={'placeholder': 'Ce message sera affiché sur la page d\'accueil'})
2018-10-05 22:03:02 +00:00
}