takahe/templates/activities/post_delete.html

15 wiersze
372 B
HTML
Czysty Zwykły widok Historia

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