blob: d91b47c54af0d1da71432ce7d85f58c3c49f11d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% load i18n inline_formset %}
{% block content %}
<h2>{{page_name}}</h2>
<div class='form{% if not form.SEARCH_AND_SELECT %} container{% endif %}'>
<form enctype="multipart/form-data" action="." method="post"
onsubmit="return confirm('Do you really want to delete this item?');">{% csrf_token %}
<table>
{{form}}
</table>
<input type="submit" value="{% trans "Delete" %}"/>
</form>
</div>
{% endblock %}
|