{% extends "admin/login.html" %} {% load static %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block title %}{% trans '注册' %} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block content %} {% if form.errors and not form.non_field_errors %}
{% if form.errors.items|length == 1 %} {% trans "Please correct the error below." %} {% else %} {% trans "Please correct the errors below." %} {% endif %}
{% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}{{ error }} {{ error.code }}
{% endfor %} {% endif %}