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

20 lines
672 B
HTML

{% extends "authentic2/authenticators/authenticator_common.html" %}
{% load i18n gadjo %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'a2-manager-authenticators' %}">{% trans "Authenticators" %}</a>
<a href="#"></a>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
<p>{% blocktrans %}Do you want to delete "{{ object }}" ?{% endblocktrans %}</p>
<div class="buttons">
<button class="delete-button">{% trans "Delete" %}</button>
<a class="cancel" href="{% url 'a2-manager-authenticator-detail' pk=object.pk %}">{% trans 'Cancel' %}</a>
</div>
</form>
{% endblock %}