66 lines
2.5 KiB
Python
66 lines
2.5 KiB
Python
from django import forms
|
|
from django.core.exceptions import ValidationError
|
|
|
|
from manuels.models import Book, SuppliesRequirement
|
|
|
|
|
|
class EditBookForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Book
|
|
fields = ['teacher', 'level', 'field', 'no_book', 'see_later', 'title', 'authors', 'editor', 'other_editor',
|
|
'publication_year', 'isbn', 'price', 'previously_acquired', 'comments']
|
|
|
|
no_book = forms.BooleanField(label='Pas de livre pour cette classe/matière', required=False, initial=False)
|
|
see_later = forms.BooleanField(
|
|
label='Voir à la rentrée', help_text="Notamment en cas de désaccord sur l'adoption ou non d'un manuel",
|
|
required=False, initial=False
|
|
)
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['title'].widget = forms.TextInput()
|
|
self.fields['authors'].widget = forms.TextInput()
|
|
self.fields['comments'].widget.attrs.update(rows=3)
|
|
|
|
def clean(self):
|
|
editor = self.cleaned_data['editor']
|
|
other_editor = self.cleaned_data['other_editor']
|
|
title = self.cleaned_data['title']
|
|
|
|
if (editor
|
|
and 'autre' in editor.name.lower()
|
|
and not other_editor
|
|
and title not in ['PAS DE LIVRE POUR CETTE CLASSE', 'VOIR À LA RENTRÉE']):
|
|
self.add_error(
|
|
'other_editor',
|
|
ValidationError(
|
|
"Vous devez préciser l'éditeur si vous n'en choisissez pas un parmi la liste.",
|
|
code='missing'
|
|
)
|
|
)
|
|
|
|
|
|
class AddBookForm(EditBookForm):
|
|
class Meta(EditBookForm.Meta):
|
|
fields = ['teacher', 'level', 'field', 'no_book', 'see_later', 'title', 'authors', 'editor', 'other_editor',
|
|
'publication_year', 'isbn', 'price', 'previously_acquired', 'comments', 'add_another']
|
|
|
|
add_another = forms.BooleanField(label='Ajouter un autre livre', required=False, initial=True)
|
|
|
|
|
|
class EditSuppliesForm(forms.ModelForm):
|
|
class Meta:
|
|
model = SuppliesRequirement
|
|
fields = ['teacher', 'level', 'fields', 'supplies']
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['fields'].widget.attrs.update(rows=3)
|
|
self.fields['supplies'].widget.attrs.update(rows=3)
|
|
|
|
|
|
class AddSuppliesForm(EditSuppliesForm):
|
|
class Meta(EditSuppliesForm.Meta):
|
|
pass
|
|
|
|
add_another = forms.BooleanField(label="Ajouter d'autres fournitures", required=False, initial=True)
|