{% extends "BaseAdmin.html" %} {% load i18n %} {% block title %}{% trans 'Account add' %}{% endblock %} {% block content %}

{% trans 'Add account' %} {{ username }}

{% if invalidField %} {% trans 'These field needs a value.' %}
{% for item in invalidField %} "{{ item }}" {% endfor %}
{% endif %}

{{ username }}

{% for attr in modAttrs %} {% endfor %}
{% trans 'Description(attribute name)' %}{% trans 'Value' %}
{% trans 'username' %}(username)
{% trans 'password' %}(passowrd)
{% if attr.2 %} {{ attr.1 }} ({{ attr.0 }}) {% else %} {{ attr.1 }} ({{ attr.0 }}) {% endif %}

{% trans 'Target' %}

{% for serverID in backends %} {% endfor %}
{{ serverID }}

{% endblock %}