mirror of
https://github.com/status-im/cabot.git
synced 2025-02-25 19:05:22 +00:00
19 lines
366 B
HTML
19 lines
366 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Delete check</h1>
|
|
<form action="." method="post">{% csrf_token %}
|
|
<button type="submit" class="btn btn-danger">Delete {{ object }}</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% load compress %}
|
|
{% block js %}
|
|
{{ block.super }}
|
|
{% compress js %}
|
|
<script type="text/coffeescript">
|
|
|
|
</script>
|
|
{% endcompress %}
|
|
{% endblock %}
|