hobo/hobo/applications/templates/hobo/applications/app_confirm_delete.html

20 lines
547 B
HTML

{% extends "hobo/base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% blocktrans with title=object.name %}Removal of "{{ title }}"{% endblocktrans %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<p>
{% trans 'Are you sure you want to remove this application?' %}
</p>
<div class="buttons">
<button class="delete-button">{% trans 'Delete' %}</button>
<a class="cancel" href="{% url 'application-manifest' app_slug=view.kwargs.slug %}">{% trans 'Cancel' %}</a>
</div>
</form>
{% endblock %}