This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/post_delete.html

15 lines
367 B
HTML
Raw Normal View History

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