2022-11-24 21:31:45 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Delete Post{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Delete this post?</h1>
|
2022-11-27 11:09:08 -08:00
|
|
|
{% include "activities/_mini_post.html" %}
|
2022-11-24 21:31:45 -08:00
|
|
|
<form action="." method="POST">
|
|
|
|
{% csrf_token %}
|
2023-01-08 11:20:05 -08:00
|
|
|
<button onclick="history.back()" autofocus>Cancel</button>
|
2022-11-24 21:31:45 -08:00
|
|
|
<button class="delete">Delete</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|