{% extends "base_site.html" %} {% block title %}{{ _('Registration') }} | {{ _('XvsO') }}{% endblock %} {% block content %}

{{ _('Registration')}}

{% csrf_token %}
{% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% endblock %}