mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
14 lines
362 B
HTML
14 lines
362 B
HTML
{% 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 %}
|