blob: 1566399a75b1ed927aa02ae65b34382a06207ac4 (
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>
    <form action="." method="POST">
        {% csrf_token %}
        <a class="button" onclick="history.back()">Cancel</a>
        <button class="delete">Delete</button>
    </form>
    {% include "activities/_post.html" %}
{% endblock %}
 |