diff --git a/participation/templates/participation/team_detail.html b/participation/templates/participation/team_detail.html index 125625e..4e12bb0 100644 --- a/participation/templates/participation/team_detail.html +++ b/participation/templates/participation/team_detail.html @@ -10,19 +10,19 @@
-
{% trans "Name:" %}
+
{% trans "Name:" %}
{{ team.name }}
-
{% trans "Trigram:" %}
+
{% trans "Trigram:" %}
{{ team.trigram }}
-
{% trans "Email:" %}
+
{% trans "Email:" %}
{{ team.email }}
-
{% trans "Access code:" %}
+
{% trans "Access code:" %}
{{ team.access_code }}
-
{% trans "Coaches:" %}
+
{% trans "Coaches:" %}
{% for coach in team.coaches.all %} {{ coach }}{% if not forloop.last %},{% endif %} @@ -31,7 +31,7 @@ {% endfor %}
-
{% trans "Participants:" %}
+
{% trans "Participants:" %}
{% for student in team.students.all %} {{ student }}{% if not forloop.last %},{% endif %} @@ -40,7 +40,7 @@ {% endfor %}
-
{% trans "Tournament:" %}
+
{% trans "Tournament:" %}
{% if team.participation.tournament %} {{ team.participation.tournament }} @@ -49,7 +49,7 @@ {% endif %}
-
{% trans "Photo authorizations:" %}
+
{% trans "Photo authorizations:" %}
{% for participant in team.participants.all %} {% if participant.photo_authorization %} @@ -61,7 +61,7 @@
{% if team.participation.final %} -
{% trans "Photo authorizations (final):" %}
+
{% trans "Photo authorizations (final):" %}
{% for participant in team.participants.all %} {% if participant.photo_authorization_final %} @@ -74,7 +74,7 @@ {% endif %} {% if not team.participation.tournament.remote %} -
{% trans "Health sheets:" %}
+
{% trans "Health sheets:" %}
{% for student in team.students.all %} {% if student.under_18 %} @@ -87,7 +87,7 @@ {% endfor %}
-
{% trans "Vaccine sheets:" %}
+
{% trans "Vaccine sheets:" %}
{% for student in team.students.all %} {% if student.under_18 %} @@ -100,7 +100,7 @@ {% endfor %}
-
{% trans "Parental authorizations:" %}
+
{% trans "Parental authorizations:" %}
{% for student in team.students.all %} {% if student.under_18 %} @@ -114,7 +114,7 @@
{% if team.participation.final %} -
{% trans "Parental authorizations (final):" %}
+
{% trans "Parental authorizations (final):" %}
{% for student in team.students.all %} {% if student.under_18_final %} @@ -129,7 +129,7 @@ {% endif %} {% endif %} -
{% trans "Motivation letter:" %}
+
{% trans "Motivation letter:" %}
{% if team.motivation_letter %} {% trans "Download" %} @@ -155,7 +155,7 @@
{% for student in team.students.all %} {% for payment in student.payments.all %} -
+
{% trans "Payment of" %} {{ student }} {% if payment.grouped %}({% trans "grouped" %}){% endif %} {% if payment.final %} ({% trans "final" %}){% endif %} : diff --git a/participation/templates/participation/tournament_detail.html b/participation/templates/participation/tournament_detail.html index 83816f0..0150ad7 100644 --- a/participation/templates/participation/tournament_detail.html +++ b/participation/templates/participation/tournament_detail.html @@ -9,53 +9,53 @@
-
{% trans 'organizers'|capfirst %}
-
{{ tournament.organizers.all|join:", " }}
+
{% trans 'organizers'|capfirst %}
+
{{ tournament.organizers.all|join:", " }}
-
{% trans 'size'|capfirst %}
-
{{ tournament.max_teams }}
+
{% trans 'size'|capfirst %}
+
{{ tournament.max_teams }}
-
{% trans 'place'|capfirst %}
-
{{ tournament.place }}
+
{% trans 'place'|capfirst %}
+
{{ tournament.place }}
-
{% trans 'price'|capfirst %}
-
{% if tournament.price %}{{ tournament.price }} €{% else %}{% trans "Free" %}{% endif %}
+
{% trans 'price'|capfirst %}
+
{% if tournament.price %}{{ tournament.price }} €{% else %}{% trans "Free" %}{% endif %}
-
{% trans 'remote'|capfirst %}
-
{{ tournament.remote|yesno }}
+
{% trans 'remote'|capfirst %}
+
{{ tournament.remote|yesno }}
-
{% trans 'dates'|capfirst %}
-
{% trans "From" %} {{ tournament.date_start }} {% trans "to" %} {{ tournament.date_end }}
+
{% trans 'dates'|capfirst %}
+
{% trans "From" %} {{ tournament.date_start }} {% trans "to" %} {{ tournament.date_end }}
-
{% trans 'date of registration closing'|capfirst %}
-
{{ tournament.inscription_limit }}
+
{% trans 'date of registration closing'|capfirst %}
+
{{ tournament.inscription_limit }}
-
{% trans 'date of maximal solution submission'|capfirst %}
-
{{ tournament.solution_limit }}
+
{% trans 'date of maximal solution submission'|capfirst %}
+
{{ tournament.solution_limit }}
-
{% trans 'date of the random draw'|capfirst %}
-
{{ tournament.solutions_draw }}
+
{% trans 'date of the random draw'|capfirst %}
+
{{ tournament.solutions_draw }}
-
{% trans 'date of maximal syntheses submission for the first round'|capfirst %}
-
{{ tournament.syntheses_first_phase_limit }}
+
{% trans 'date of maximal syntheses submission for the first round'|capfirst %}
+
{{ tournament.syntheses_first_phase_limit }}
-
{% trans 'date when solutions of round 2 are available'|capfirst %}
-
{{ tournament.solutions_available_second_phase }}
+
{% trans 'date when solutions of round 2 are available'|capfirst %}
+
{{ tournament.solutions_available_second_phase }}
-
{% trans 'date of maximal syntheses submission for the second round'|capfirst %}
-
{{ tournament.syntheses_second_phase_limit }}
+
{% trans 'date of maximal syntheses submission for the second round'|capfirst %}
+
{{ tournament.syntheses_second_phase_limit }}
-
{% trans 'description'|capfirst %}
-
{{ tournament.description }}
+
{% trans 'description'|capfirst %}
+
{{ tournament.description }}
-
{% trans 'To contact organizers' %}
-
{{ tournament.organizers_email }}
+
{% trans 'To contact organizers' %}
+
{{ tournament.organizers_email }}
-
{% trans 'To contact juries' %}
-
{{ tournament.jurys_email }}
+
{% trans 'To contact juries' %}
+
{{ tournament.jurys_email }}
-
{% trans 'To contact valid teams' %}
-
{{ tournament.teams_email }}
+
{% trans 'To contact valid teams' %}
+
{{ tournament.teams_email }}
diff --git a/registration/templates/registration/user_detail.html b/registration/templates/registration/user_detail.html index a799b15..9c019ff 100644 --- a/registration/templates/registration/user_detail.html +++ b/registration/templates/registration/user_detail.html @@ -11,18 +11,18 @@
-
{% trans "Last name:" %}
+
{% trans "Last name:" %}
{{ user_object.last_name }}
-
{% trans "First name:" %}
+
{% trans "First name:" %}
{{ user_object.first_name }}
-
{% trans "Email:" %}
+
{% trans "Email:" %}
{{ user_object.email }} {% if not user_object.registration.email_confirmed %} ({% trans "Not confirmed" %}, {% trans "resend the validation link" %}){% endif %}
{% if user_object == user %} -
{% trans "Password:" %}
+
{% trans "Password:" %}
{% trans "Change password" %} @@ -31,7 +31,7 @@ {% endif %} {% if user_object.registration.participates %} -
{% trans "Team:" %}
+
{% trans "Team:" %}
{% trans "any" as any %}
@@ -40,30 +40,30 @@
{% if user_object.registration.studentregistration %} -
{% trans "Birth date:" %}
+
{% trans "Birth date:" %}
{{ user_object.registration.birth_date }}
{% endif %} -
{% trans "Gender:" %}
+
{% trans "Gender:" %}
{{ user_object.registration.get_gender_display }}
-
{% trans "Address:" %}
+
{% trans "Address:" %}
{{ user_object.registration.address }}, {{ user_object.registration.zip_code|stringformat:'05d' }} {{ user_object.registration.city }}
-
{% trans "Phone number:" %}
+
{% trans "Phone number:" %}
{{ user_object.registration.phone_number }}
{% if user_object.registration.health_issues %} -
{% trans "Health issues:" %}
+
{% trans "Health issues:" %}
{{ user_object.registration.health_issues }}
{% endif %} {% if user_object.registration.housing_constraints %} -
{% trans "Housing constraints:" %}
+
{% trans "Housing constraints:" %}
{{ user_object.registration.housing_constraints }}
{% endif %} -
{% trans "Photo authorization:" %}
+
{% trans "Photo authorization:" %}
{% if user_object.registration.photo_authorization %} {% trans "Download" %} @@ -74,7 +74,7 @@
{% if user_object.registration.team.participation.final %} -
{% trans "Photo authorization (final):" %}
+
{% trans "Photo authorization (final):" %}
{% if user_object.registration.photo_authorization_final %} {% trans "Download" %} @@ -86,7 +86,7 @@ {% if user_object.registration.studentregistration %} {% if user_object.registration.under_18 and user_object.registration.team.participation.tournament and not user_object.registration.team.participation.tournament.remote %} -
{% trans "Health sheet:" %}
+
{% trans "Health sheet:" %}
{% if user_object.registration.health_sheet %} {% trans "Download" %} @@ -96,7 +96,7 @@ {% endif %}
-
{% trans "Vaccine sheet:" %}
+
{% trans "Vaccine sheet:" %}
{% if user_object.registration.vaccine_sheet %} {% trans "Download" %} @@ -106,7 +106,7 @@ {% endif %}
-
{% trans "Parental authorization:" %}
+
{% trans "Parental authorization:" %}
{% if user_object.registration.parental_authorization %} {% trans "Download" %} @@ -117,7 +117,7 @@
{% if user_object.registration.team.participation.final %} -
{% trans "Parental authorization (final):" %}
+
{% trans "Parental authorization (final):" %}
{% if user_object.registration.parental_authorization_final %} {% trans "Download" %} @@ -127,38 +127,38 @@ {% endif %} {% endif %} -
{% trans "Student class:" %}
+
{% trans "Student class:" %}
{{ user_object.registration.get_student_class_display }}
-
{% trans "School:" %}
+
{% trans "School:" %}
{{ user_object.registration.school }}
-
{% trans "Responsible name:" %}
+
{% trans "Responsible name:" %}
{{ user_object.registration.responsible_name }}
-
{% trans "Responsible phone number:" %}
+
{% trans "Responsible phone number:" %}
{{ user_object.registration.responsible_phone }}
-
{% trans "Responsible email address:" %}
+
{% trans "Responsible email address:" %}
{% with user_object.registration.responsible_email as email %}
{{ email }}
{% endwith %} {% elif user_object.registration.coachregistration %} -
{% trans "Most recent degree:" %}
+
{% trans "Most recent degree:" %}
{{ user_object.registration.last_degree }}
-
{% trans "Professional activity:" %}
+
{% trans "Professional activity:" %}
{{ user_object.registration.professional_activity }}
{% elif user_object.registration.is_volunteer %} -
{% trans "Professional activity:" %}
+
{% trans "Professional activity:" %}
{{ user_object.registration.professional_activity }}
-
{% trans "Admin:" %}
+
{% trans "Admin:" %}
{{ user_object.registration.is_admin|yesno }}
{% endif %} -
{% trans "Grant Animath to contact me in the future about other actions:" %}
+
{% trans "Grant Animath to contact me in the future about other actions:" %}
{{ user_object.registration.give_contact_to_animath|yesno }}
@@ -166,7 +166,7 @@
{% for payment in user_object.registration.payments.all %}
-
+
{% if payment.final %} {% trans "Payment information (final):" %} {% else %} diff --git a/tfjm/templates/footer.html b/tfjm/templates/footer.html index 52e7bcb..de03c34 100644 --- a/tfjm/templates/footer.html +++ b/tfjm/templates/footer.html @@ -41,7 +41,7 @@
-
+
diff --git a/tfjm/templates/index.html b/tfjm/templates/index.html index c6781de..0dd8933 100644 --- a/tfjm/templates/index.html +++ b/tfjm/templates/index.html @@ -17,7 +17,7 @@ Ton équipe est déjà formée ?
-
+