hobo/hobo/applications/templates/hobo/applications/parameter-confirm-delete.html

21 lines
485 B
HTML

{% extends "hobo/applications/home.html" %}
{% load gadjo i18n %}
{% block appbar %}
<h2>{% trans "Delete Parameter" %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<p>
{% trans 'Are you sure you want to remove this parameter?' %}
</p>
<div class="buttons">
<button class="delete-button">{% trans "Delete" %}</button>
<a class="cancel" href="../../">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}