{% extends "base_beer.html" %} {% load static i18n %} {% block title %}{% trans "Initial setup — Create admin" %}{% endblock %} {% block content %}

{% trans "Create initial administrator" %}

{% trans "This page is only available when there are no admin users in the database." %}

{% trans "After creating the account you will be logged in and redirected to the admin." %}

{% csrf_token %} {% if form.non_field_errors %}
{% for err in form.non_field_errors %}
warning {{ err }}
{% endfor %}
{% endif %}
{% if form.first_name.errors %} {{ form.first_name.errors.0 }} {% endif %}
{% if form.last_name.errors %} {{ form.last_name.errors.0 }} {% endif %}
{% if form.username.errors %} {{ form.username.errors.0 }} {% endif %}
{% if form.email.errors %} {{ form.email.errors.0 }} {% endif %}
{% if form.password1.errors %} {{ form.password1.errors.0 }} {% endif %}
{% if form.password2.errors %} {{ form.password2.errors.0 }} {% endif %}
{% endblock %}