26 lines
654 B
HTML
26 lines
654 B
HTML
{% extends "base.html" %}
|
|
{% load i18n comments %}
|
|
|
|
{% block meta_title %}{% trans 'Delete Hanchan' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>{% trans "Delete Hanchan" %}</legend>
|
|
{% include 'form.html' %}
|
|
<p class="buttonbar">
|
|
<button type="button" onclick="window.history.back()">
|
|
<img src="{{STATIC_URL}}icons/cancel.png" alt="{% trans 'Cancel' %}"/>
|
|
{% trans 'Cancel' %}
|
|
</button>
|
|
<button type="submit">
|
|
<img src="{{STATIC_URL}}icons/table_delete.png" alt="{% trans 'Delete' %}"/>
|
|
{% trans 'Delete' %}
|
|
</button>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block buttonbar %}{% endblock %} |