~linuxgoose/bocpress

ref: 998269312d17fad056e8960a12a1a33f49aeff70 bocpress/main/templates/main/image_confirm_delete.html -rw-r--r-- 401 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 {{ image.name }}{{ request.user.username }}{% endblock %}

{% block content %}
<main class="delete">
    <h1>Are you sure you want to delete {{ image.name }}?</h1>
    <form method="post">
        {% csrf_token %}
        <input type="submit" value="Yes, delete for sure" class="type-danger">
    </form>
</main>
{% endblock content %}