{% extends 'base.html' %} {% load i18n %} {% load static %} {% load bootstrap %} {% block custom_head_css_js %} {% endblock %} {% block content %}
{% block user_template_title %}{% trans 'Create user' %}{% endblock %}
{% csrf_token %}

{% trans 'Account' %}

{% block username %} {% endblock %} {{ form.email|bootstrap_horizontal }} {{ form.name|bootstrap_horizontal }} {{ form.groups|bootstrap_horizontal }}
{% block password %} {% endblock %}

{% trans 'Security and Role' %}

{{ form.role|bootstrap_horizontal }}
{{ form.date_expired.errors }}
{# {{ form.date_expired|bootstrap_horizontal }}#}
{{ form.enable_otp }}

{% trans 'Profile' %}

{{ form.phone|bootstrap_horizontal }} {{ form.wechat|bootstrap_horizontal }} {{ form.comment|bootstrap_horizontal }}
{% endblock %} {% block custom_foot_js %} {% endblock %}