mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-04-01 20:11:12 +00:00
56 lines
1.4 KiB
HTML
56 lines
1.4 KiB
HTML
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>
|
|
{% trans "Hi" %} {{ registration }},
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed with amount=payment.amount team=payment.team.trigram tournament=payment.tournament %}
|
|
You are registered for the TFJM² of {{ tournament }}. Your team {{ team }} has been successfully validated.
|
|
To end your inscription, you must pay the amount of {{ amount }} €.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% if payment.grouped %}
|
|
<p>
|
|
{% trans "This price includes the registrations of all members of your team." %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% trans "You can pay by credit card or by bank transfer. You can read full instructions on the payment page:" %}
|
|
</p>
|
|
|
|
<p>
|
|
<a href="https://{{ domain }}{% url "registration:update_payment" pk=payment.pk %}">
|
|
https://{{ domain }}{% url "registration:update_payment" pk=payment.pk %}
|
|
</a>
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "If you have a scholarship, then the registration is free for you. You must then upload it on the payment page using the above link." %}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "It is also possible to allow an external person (your parents, your school, etc.) to pay for you with credit card. Instructions are also available on the payment page." %}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "If you have any problem, feel free to contact us." %}
|
|
</p>
|
|
|
|
--
|
|
<p>
|
|
{% trans "The TFJM² team." %}<br>
|
|
</p>
|
|
</body>
|
|
</html>
|