diff --git a/registration/templates/registration/payment_form.html b/registration/templates/registration/payment_form.html index 96f1043..59366d8 100644 --- a/registration/templates/registration/payment_form.html +++ b/registration/templates/registration/payment_form.html @@ -3,50 +3,8 @@ {% load crispy_forms_filters i18n %} {% block content %} -
-
-
-

- {% blocktrans trimmed with price=payment.registration.team.participation.tournament.price %} - The price of the tournament is {{ price }} €. The participation fee is offered for coaches - and for students who have a scholarship. If so, please send us your scholarship attestation. - {% endblocktrans %} -

- -

- {% blocktrans trimmed %} - You can pay with a credit card through - our Hello Asso page. - To make the validation of the payment easier, please use the same e-mail - address that you use on this platform. The payment verification will be checked automatically - under 10 minutes, you don't necessary need to fill this form. - {% endblocktrans %} -

- -

- {% blocktrans trimmed %} - You can also send a bank transfer to the bank account of Animath. You must put in the reference of the - transfer the mention "TFJMpu" followed by the last name and the first name of the student. - {% endblocktrans %} -

- -

- IBAN : FR76 1027 8065 0000 0206 4290 127
- BIC : CMCIFR2A -

- -

- {% blocktrans trimmed %} - If any payment mean is available to you, please contact us at contact@tfjm.org - to find a solution to your difficulties. - {% endblocktrans %} -

-
- - {% csrf_token %} - {{ form|crispy }} -
- -
+
+ Le formulaire de paiement est temporairement désactivé. Il sera accessible d'ici quelques jours. +
{% endblock content %} diff --git a/registration/views.py b/registration/views.py index c5c27af..0ff5b36 100644 --- a/registration/views.py +++ b/registration/views.py @@ -456,8 +456,6 @@ class PaymentUpdateView(LoginRequiredMixin, UpdateView): def get_form(self, form_class=None): form = super().get_form(form_class) if not self.request.user.registration.is_admin: - from django.forms.widgets import Select - widget: Select form.fields["type"].widget.choices = list(form.fields["type"].widget.choices)[:-1] del form.fields["valid"] return form