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

17 lines
673 B
HTML

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