2016-07-15 00:02:56 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-15 00:02:56 +02:00
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
2016-07-08 23:04:34 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-07-27 13:08:00 +02:00
|
|
|
from datetime import timedelta
|
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
from django import forms
|
2016-06-05 02:16:14 +02:00
|
|
|
from django.forms.models import BaseInlineFormSet
|
2016-07-25 23:03:33 +02:00
|
|
|
from django.utils import timezone
|
2016-07-27 13:08:00 +02:00
|
|
|
from bda.models import Attribution, Spectacle
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
class BaseBdaFormSet(BaseInlineFormSet):
|
|
|
|
def clean(self):
|
|
|
|
"""Checks that no two articles have the same title."""
|
|
|
|
super(BaseBdaFormSet, self).clean()
|
|
|
|
if any(self.errors):
|
2016-07-09 21:19:37 +02:00
|
|
|
# Don't bother validating the formset unless each form is valid on
|
|
|
|
# its own
|
2016-05-27 17:52:02 +02:00
|
|
|
return
|
|
|
|
spectacles = []
|
|
|
|
for i in range(0, self.total_form_count()):
|
|
|
|
form = self.forms[i]
|
|
|
|
if not form.cleaned_data:
|
|
|
|
continue
|
|
|
|
spectacle = form.cleaned_data['spectacle']
|
|
|
|
delete = form.cleaned_data['DELETE']
|
|
|
|
if not delete and spectacle in spectacles:
|
2016-07-09 22:31:56 +02:00
|
|
|
raise forms.ValidationError(
|
|
|
|
"Vous ne pouvez pas vous inscrire deux fois pour le "
|
|
|
|
"même spectacle.")
|
2016-05-27 17:52:02 +02:00
|
|
|
spectacles.append(spectacle)
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
class TokenForm(forms.Form):
|
2016-06-05 02:16:14 +02:00
|
|
|
token = forms.CharField(widget=forms.widgets.Textarea())
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-07-27 13:08:00 +02:00
|
|
|
class AttributionModelMultipleChoiceField(forms.ModelMultipleChoiceField):
|
2016-05-27 17:52:02 +02:00
|
|
|
def label_from_instance(self, obj):
|
2016-07-27 13:08:00 +02:00
|
|
|
return "%s" % obj.spectacle
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
class ResellForm(forms.Form):
|
2016-07-27 13:08:00 +02:00
|
|
|
attributions = AttributionModelMultipleChoiceField(
|
2016-07-25 23:03:33 +02:00
|
|
|
queryset=Attribution.objects.none(),
|
2016-07-27 13:08:00 +02:00
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
2016-05-27 17:52:02 +02:00
|
|
|
|
|
|
|
def __init__(self, participant, *args, **kwargs):
|
|
|
|
super(ResellForm, self).__init__(*args, **kwargs)
|
2016-07-25 23:03:33 +02:00
|
|
|
self.fields['attributions'].queryset = participant.attribution_set\
|
|
|
|
.filter(spectacle__date__gte=timezone.now(),
|
|
|
|
revente__isnull=True)
|
2016-07-27 13:08:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class AnnulForm(forms.Form):
|
|
|
|
attributions = AttributionModelMultipleChoiceField(
|
|
|
|
queryset=Attribution.objects.none(),
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
|
|
|
|
|
|
|
def __init__(self, participant, *args, **kwargs):
|
|
|
|
super(AnnulForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['attributions'].queryset = participant.attribution_set\
|
|
|
|
.filter(spectacle__date__gte=timezone.now(),
|
|
|
|
revente__isnull=False,
|
|
|
|
revente__date__gte=timezone.now()-timedelta(hours=1))
|
|
|
|
|
|
|
|
|
|
|
|
class InscriptionReventeForm(forms.Form):
|
|
|
|
spectacles = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=Spectacle.objects.none(),
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
|
|
|
|
|
|
|
def __init__(self, tirage, *args, **kwargs):
|
|
|
|
super(InscriptionReventeForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['spectacles'].queryset = tirage.spectacle_set.filter(
|
|
|
|
date__gte=timezone.now())
|