mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-25 07:42:22 +00:00
Temporary disable payment form
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
2e574d0659
commit
ece128836a
@ -3,50 +3,8 @@
|
|||||||
{% load crispy_forms_filters i18n %}
|
{% load crispy_forms_filters i18n %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<form method="post" enctype="multipart/form-data">
|
<div class="alert alert-warning">
|
||||||
<div id="form-content">
|
Le formulaire de paiement est temporairement désactivé. Il sera accessible d'ici quelques jours.
|
||||||
<div class="alert alert-info text-justify">
|
</div>
|
||||||
<p>
|
|
||||||
{% 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 %}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
{% blocktrans trimmed %}
|
|
||||||
You can pay with a credit card through
|
|
||||||
<a class="alert-link" href="https://www.helloasso.com/associations/animath/evenements/tfjm-2023-tournois-regionaux">our Hello Asso page</a>.
|
|
||||||
To make the validation of the payment easier, <span class="text-danger">please use the same e-mail
|
|
||||||
address that you use on this platform.</span> The payment verification will be checked automatically
|
|
||||||
under 10 minutes, you don't necessary need to fill this form.
|
|
||||||
{% endblocktrans %}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
{% 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 %}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
IBAN : FR76 1027 8065 0000 0206 4290 127<br>
|
|
||||||
BIC : CMCIFR2A
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
{% blocktrans trimmed %}
|
|
||||||
If any payment mean is available to you, please contact us at <a class="alert-link" href="mailto:contact@tfjm.org">contact@tfjm.org</a>
|
|
||||||
to find a solution to your difficulties.
|
|
||||||
{% endblocktrans %}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% csrf_token %}
|
|
||||||
{{ form|crispy }}
|
|
||||||
</div>
|
|
||||||
<button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
|
|
||||||
</form>
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
|
@ -456,8 +456,6 @@ class PaymentUpdateView(LoginRequiredMixin, UpdateView):
|
|||||||
def get_form(self, form_class=None):
|
def get_form(self, form_class=None):
|
||||||
form = super().get_form(form_class)
|
form = super().get_form(form_class)
|
||||||
if not self.request.user.registration.is_admin:
|
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]
|
form.fields["type"].widget.choices = list(form.fields["type"].widget.choices)[:-1]
|
||||||
del form.fields["valid"]
|
del form.fields["valid"]
|
||||||
return form
|
return form
|
||||||
|
Loading…
Reference in New Issue
Block a user