mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
Merge pull request #451 from ae-utbm/django-3.2-migration
Edited deprecated code
This commit is contained in:
commit
7a914f5e94
@ -68,9 +68,17 @@ class SubscriptionForm(forms.ModelForm):
|
|||||||
)
|
)
|
||||||
self.fields["email"] = forms.EmailField()
|
self.fields["email"] = forms.EmailField()
|
||||||
self.fields["date_of_birth"] = forms.DateTimeField(widget=SelectDate)
|
self.fields["date_of_birth"] = forms.DateTimeField(widget=SelectDate)
|
||||||
self.fields.move_to_end("subscription_type")
|
|
||||||
self.fields.move_to_end("payment_method")
|
self.field_order = [
|
||||||
self.fields.move_to_end("location")
|
"member",
|
||||||
|
"last_name",
|
||||||
|
"first_name",
|
||||||
|
"email",
|
||||||
|
"date_of_birth",
|
||||||
|
"subscription_type",
|
||||||
|
"payment_method",
|
||||||
|
"location",
|
||||||
|
]
|
||||||
|
|
||||||
def clean_member(self):
|
def clean_member(self):
|
||||||
subscriber = self.cleaned_data.get("member")
|
subscriber = self.cleaned_data.get("member")
|
||||||
|
Loading…
Reference in New Issue
Block a user