authentic/src/authentic2/manager/templates/authentic2/manager/user_add.html

18 lines
551 B
HTML

{% extends "authentic2/manager/form.html" %}
{% load i18n %}
{% block page-title %}
{% trans "Add an user" %}
{% endblock %}
{% block hidden_inputs %}
{{ block.super }}
{% if next %}<input type="hidden" name="next" value="{{ next }}">{% endif %}
{% endblock %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'a2-manager-users' %}{% if multiple_ou and ou %}?search-ou={{ ou.pk }}{% endif %}">{% trans 'Users' %}{% if multiple_ou and ou %}&nbsp;: {{ ou }}{% endif %}</a>
<a href="#">{% trans "Add an user" %}</a>
{% endblock %}