blechreiz-website/imagestore/templates/imagestore/album_delete.html

14 lines
471 B
HTML

{% extends "imagestore/base.html" %}
{% load i18n %}
{% block imagestore_content %}
<p>{% trans "Are you sure that you would like to delete this album?" %}</p>
<form method="post" action=".">
{% csrf_token %}
<p>
<a class='btn' href="{{ post.get_absolute_url }}">← {% trans "No, take me back" %}</a>
<input type="submit" class='btn danger' value="{% trans 'Yes, I am sure' %}" />
</p>
</form>
{% endblock %}