{% extends "base_auth.html" %} {% load utils_templating %} {% block content_auth %} {% if allow_signup %}
{% csrf_token %} {% for field in form %}
{{ field|addcss:'input' }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}
Already registered ? login
{% else %}
You can't signup yourself, please contact the admin in order to get your username and your password!
{% endif %} {% endblock %}