{% extends 'base.html' %} {% load crispy_forms_filters %} {% load i18n %} {% block title %}{% trans "Sign up" %}{% endblock %} {% block extracss %} {{ student_registration_form.media }} {% endblock %} {% block content %} {% now "c" as now %} {% if now < TFJM.REGISTRATION_DATES.open.isoformat and not user.registration.is_admin %}
{% trans "Thank you for your great interest, but registrations are not opened yet!" %} {% trans "They will open on:" %} {{ TFJM.REGISTRATION_DATES.open|date:'DATETIME_FORMAT' }}. {% trans "Please come back at this time to register!" %}
{% elif now > TFJM.REGISTRATION_DATES.close.isoformat and not user.registration.is_admin %}
{% trans "Registrations are closed for this year. We hope to see you next year!" %} {% trans "If needed, you can contact us by mail." %}
{% else %}
{% csrf_token %} {{ form|crispy }}
{% trans "By registering, you certify that you have read and accepted our" %} {% trans "privacy policy" %}.
{{ student_registration_form|crispy }}
{{ coach_registration_form|crispy }}
{% endif %} {% endblock %} {% block extrajavascript %} {% endblock %}