Compare commits

..

1 commit

Author SHA1 Message Date
183f655828 Update kfet/forms.py
Correction de l'assignation des promos
2024-11-10 11:48:43 +01:00

View file

@ -93,7 +93,7 @@ class DemandeSoireeForm(forms.Form):
def default_promo():
now = date.today()
return now.month <= 8 and now.year - 1 or now.year
return now.month <= 7 and now.year - 1 or now.year
def get_promo_choices():