{% extends 'www/base.html' %} {% load i18n %} {% load staticfiles %} {% load crispy_forms_tags %} {% block title %}{{CUSTOM_CONFIG.TITLE}} 用户注册{% endblock %} {% block extracss %} {% endblock %} {% block bodyclass %}login-body{% endblock %} {% block body %}

{% if errors %}
{% blocktrans count counter=errors|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{{ form.non_field_errors }} {% endif %} {% crispy form %}
{% endblock %} {% block extrajs %} {% endblock %}