mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-24 18:10:25 +00:00
12 lines
199 B
HTML
12 lines
199 B
HTML
{% extends "admin/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
delete {{ object }}
|
|
{{ form.as_p }}
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|