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/photos.html
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

18 lines
425 B
HTML

{% extends 'admin/admin.html' %}
{% set title = 'Photos' %}
{% set active_page = 'photos' %}
{% block body %}
<main>
<h2>Photos</h2>
{% if photos %}
<ul>
{% for photo in photos %}
<li><a href="{{ url_for('admin_edit_photo', photo_id=photo.id) }}">{{ photo.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} - {{ photo.title or photo.filename }}</a></li>
{% endfor %}
</ul>
{% endif %}
</main>
{% endblock %}