mirror of
https://github.com/status-im/cabot.git
synced 2025-02-25 10:55:20 +00:00
19 lines
368 B
HTML
19 lines
368 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Delete service</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 %}
|