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

15 lines
600 B
HTML

{% extends "authentic2/manager/form.html" %}
{% load i18n %}
{% 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.get_full_name }}</a>
<a href="#">{% trans "Edit" %}</a>
{% endblock %}
{% block hidden_inputs %}
{{ block.super }}
{% if next %}<input type="hidden" name="next" value="{{ next }}">{% endif %}
{% endblock %}