{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Squad registration' %} / {{ block.super }}{% endblock title %} {% block content %} {% trans 'Squad registration' %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% csrf_token %} {% for field in form %} {{ field.label }} {% if field.help_text %} {{ field.help_text }} {% endif %} {{ field }} {% if field.errors %} {% for error in field.errors %} {{ error }} {% endfor %} {% endif %} {% endfor %} {% trans 'Registration Squad' context 'action' %} {% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}