{% extends "base.html" %} {% load i18n crispy_forms_filters django_tables2 static %} {% block content %}
{% trans "Templates for syntheses are available here:" %} PDFTEX
{% if form %} {% if now < user.team.future_tournament.date_syntheses %}
{% blocktrans with deadline=user.team.future_tournament.date_syntheses round=1 %}You can upload your syntheses for round {{ round }} until {{ deadline }}.{% endblocktrans %}
{% elif now < real_deadline_1 %}
{% blocktrans with round=1 %}The deadline to send your syntheses for the round {{ round }} is reached. However, you have an extra time of 30 minutes to send your papers, no panic :){% endblocktrans %}
{% elif now < user.team.future_tournament.date_solutions_2 %}
{% blocktrans with round=1 %}You can't upload your syntheses for the round {{ round }} anymore.{% endblocktrans %}
{% elif now < user.team.future_tournament.date_syntheses_2 %}
{% blocktrans with deadline=user.team.future_tournament.date_syntheses_2 round=2 %}You can upload your syntheses for round {{ round }} until {{ deadline }}.{% endblocktrans %}
{% elif now < real_deadline_2 %}
{% blocktrans with round=2 %}The deadline to send your syntheses for the round {{ round }} is reached. However, you have an extra time of 30 minutes to send your papers, no panic :){% endblocktrans %}
{% else %}
{% blocktrans with round=2 %}You can't upload your syntheses for the round {{ round }} anymore.{% endblocktrans %}
{% endif %}
{% csrf_token %} {{ form|crispy }}

{% endif %} {% render_table table %} {% endblock %}