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

{% trans 'Basic' %}

{% bootstrap_field form.name layout="horizontal" %} {% bootstrap_field form.username layout="horizontal" %} {% bootstrap_field form.priority layout="horizontal" %} {% bootstrap_field form.protocol layout="horizontal" %} {% bootstrap_field form.cluster layout="horizontal" %} {% block auth %}

{% trans 'Auth' %}

{{ form.auto_generate_key}}
{% bootstrap_field form.password layout="horizontal" %} {% bootstrap_field form.private_key_file layout="horizontal" %}
{{ form.auto_push}}
{% endblock %}

{% trans 'Other' %}

{% bootstrap_field form.sudo layout="horizontal" %} {% bootstrap_field form.shell layout="horizontal" %} {% bootstrap_field form.comment layout="horizontal" %}
{% endblock %} {% block custom_foot_js %} {% endblock %}