2018-05-22 15:41:11 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %} Brutaldon - confirm delete {% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-23 20:20:15 +02:00
|
|
|
<h1 class="title">Delete that toot?</h1>
|
2018-05-22 15:41:11 +02:00
|
|
|
|
2018-05-23 20:20:15 +02:00
|
|
|
{% include "main/toot_partial.html" with toot=toot %}
|
|
|
|
<form method="POST" action="{% url "delete" toot.id %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
<div class="level is-mobile">
|
|
|
|
<div class="level-left">
|
|
|
|
<div class="level-item">
|
|
|
|
<input class="button" type="submit" name="cancel" value="Cancel">
|
2018-05-22 15:41:11 +02:00
|
|
|
</div>
|
2018-05-23 20:20:15 +02:00
|
|
|
</div>
|
|
|
|
<div class="level-right">
|
|
|
|
<div class="level-item">
|
|
|
|
<input class="button is-primary" type="submit" name="delete"
|
|
|
|
value="Delete">
|
2018-05-22 15:41:11 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-23 20:20:15 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
2018-05-22 15:41:11 +02:00
|
|
|
{% endblock %}
|