authentic/src/authentic2/apps/authenticators/templates/authentic2/authenticators/authenticator_edit_form.html

20 lines
595 B
HTML

{% extends "authentic2/authenticators/authenticator_common.html" %}
{% load i18n gadjo %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'a2-manager-authenticator-detail' pk=object.pk %}">{{ object }}</a>
<a href="#"></a>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form|with_template }}
<div class="buttons">
<button>{% trans "Save" %}</button>
<a class="cancel" href="{% url 'a2-manager-authenticator-detail' pk=object.pk %}">{% trans 'Cancel' %}</a>
</div>
</form>
{% endblock %}