This repository has been archived on 2025-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
website/templates/admin/remove_photo.html
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

26 lines
697 B
HTML

{% extends 'admin/admin.html' %}
{% set title = 'Remove ' + (photo.title or 'unnamed photo') %}
{% set active_page = 'photos' %}
{% block body %}
<main class="view-image">
<img src="{{ photo_resize_url(photo, 800) }}">
<h2>{{ photo.title or 'Unnamed photo' }}</h2>
{{ photo.description or 'No description'}}
<form method="POST" enctype="multipart/form-data">
{{ form.csrf_token }}
<h2>Remove photo?</h2>
<p>Are you sure?</p>
<div class="field">
<button type="submit">Remove</button>
</div>
<div class="field">
<a href="{{ url_for('admin_edit_photo', photo_id=photo.id) }}">No, take me away from here</a>
</div>
</form>
</main>
{% endblock %}