{% extends 'registration/registration_base.html' %} {% load i18n %} {% block registration_header %} {% if not firstuserform.errors %} {% endif %} {% endblock %} {% block registration_content %} {% if firstuserform.errors %}

{% trans "Uh oh! Could you please check the errors below?" %}

{% else %}

{% trans 'Welcome! ☺' %}

Before we get started, we need to create an administrator account for you:
{% endif %}
{% csrf_token %} {% for field in firstuserform %} {% include 'registration/form_field.html' %} {% endfor %}
{% endblock %}