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

12 lines
319 B
HTML

{% extends 'base.html' %}
{% set navbar = [
(url_for('admin_new_photo'), 'new_photo', 'Upload new photo'),
(url_for('admin_photos'), 'photos', 'View photos'),
(url_for('logout'), 'logout', 'Logout')
] %}
{% block header %}
<h1><a href="{{ url_for('admin') }}" class="nav-item">administration</a></h1>
{% endblock %}