{% extends 'base.html' %} {% load i18n %} {% load static %} {% load bootstrap %} {% block custom_head_css_js %} {% endblock %} {% block content %}
{% trans 'Create system user' %}
{% if form.no_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}

{% trans 'Basic' %}

{{ form.name|bootstrap_horizontal }} {{ form.username|bootstrap_horizontal }} {{ form.protocol|bootstrap_horizontal }}

{% trans 'Auth' %}

{{ form.auth_method|bootstrap_horizontal }} {% block auth %}
{{ form.auto_generate_key}}
{{ form.private_key_file|bootstrap_horizontal }}
{% endblock %}
{{ form.auto_push}}

{% trans 'Other' %}

{{ form.sudo|bootstrap_horizontal }} {{ form.home|bootstrap_horizontal }} {{ form.shell|bootstrap_horizontal }} {{ form.uid|bootstrap_horizontal }} {{ form.comment|bootstrap_horizontal }}
{% endblock %} {% block custom_foot_js %} {% endblock %}