~linuxgoose/bocpress

ref: 998269312d17fad056e8960a12a1a33f49aeff70 bocpress/main/templates/main/page_confirm_delete.html -rw-r--r-- 410 bytes
99826931Jordan Robinson update post detail page for tag query param on url 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends 'main/layout.html' %}

{% block title %}Deleting {{ page.title }}{{ request.user.username }}{% endblock %}

{% block content %}
<main class="delete">
    <h1>Are you sure you'd like to delete {{ page.title }}?</h1>
    <form method="post">
        {% csrf_token %}
        <input type="submit" value="Yes, I would like to delete" class="type-danger">
    </form>
</main>
{% endblock content %}