diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-09-03 14:51:14 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-09-03 14:51:14 +0200 |
commit | 27ea5016c4aaa4350ada4b1e6a534b8219fff578 (patch) | |
tree | c8002cd9094cc348b97b4c7585dfa3e2ce78d639 /ogcp/templates/nav.html | |
parent | 37a03045751832e19cd8151b87e77da0878ca9b7 (diff) |
Add images view
Images view manages all the images stored in the server.
Follow up patches adds actions to get and edit image details, and to
delete them.
Diffstat (limited to 'ogcp/templates/nav.html')
-rw-r--r-- | ogcp/templates/nav.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/nav.html b/ogcp/templates/nav.html index dc40207..edf5c05 100644 --- a/ogcp/templates/nav.html +++ b/ogcp/templates/nav.html @@ -17,7 +17,7 @@ <a class="nav-link" href="{{ url_for('commands') }}">{{ _('Commands') }}</a> </li> <li class="nav-item {% if request.endpoint == "images" %}active{% endif %}"> - <a class="nav-link" href="#">{{ _('Images') }}</a> + <a class="nav-link" href="{{ url_for('images') }}">{{ _('Images') }}</a> </li> <li class="nav-item {% if request.endpoint == "tasks" %}active{% endif %}"> <a class="nav-link" href="#">{{ _('Tasks') }}</a> |