{% extends "base.html" %} {% load i18n %} {% block main-content %}

{% trans "Sign up" %}

{% if form.errors %}
{% trans "Please correct the errors below and try again." %}
{% endif %}

{% csrf_token %}
{% trans 'Personal Information' %} {% for field in user_form %}
{{ field }} {{ field.errors }}
{% endfor %}
{% trans 'Subscribe to groups' %} {% for choice in lists_form.lists %}
{{ choice }}
{% endfor %} {{ lists_form.errors }}
{% endblock %}