blob: 47d283c2d074b78d3a357db5a633cd50571e8bed (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | {% extends "base.html" %}
{% block title %}Delete Post{% endblock %}
{% block content %}
    <h1>Delete this post?</h1>
    {% include "activities/_mini_post.html" %}
    <form action="." method="POST">
        {% csrf_token %}
        <a class="button" onclick="history.back()">Cancel</a>
        <button class="delete">Delete</button>
    </form>
{% endblock %}
 |