22 lines
777 B
HTML
22 lines
777 B
HTML
{% extends "base.html" %}
|
|
{% load i18n comments %}
|
|
|
|
{% block maincontent %}
|
|
<header>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<h1 class="grid_12">Dieses Photo wirklich löschen?</h1>
|
|
</header>
|
|
<img src="{{photo.display.url}}" alt="{{photo.name}}" title="{{photo.name}}" class="grid_10 push_1" />
|
|
<br class="clear" />
|
|
<p>Sind Sie sicher, dass Sie das Bild “{{photo.name}}” löschen wollen?</p>
|
|
<p class="buttonbar">
|
|
<a href="{% url 'event-photo-list' photo.event.id %}" class="button" style="float: left;"><img src="{{STATIC_URL}}icons/cancel.png" alt="{% trans 'Cancel' %}" /> {% trans 'Cancel' %}</a>
|
|
<button type="submit"><img src="{{STATIC_URL}}icons/delete.png" alt="{% trans 'Delete' %}" /> {% trans 'Delete' %}</button>
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
|