diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-30 12:23:20 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-30 12:23:20 +0200 |
commit | 695b83d4730e624a7cffa7e6ee14a64ece226eb8 (patch) | |
tree | b8c59c4994f9ca70728de42c9a5d63a95664f242 | |
parent | 87b8e34dab2968cd000efc7cd9d962b29ecbcec3 (diff) |
templates: link to images view from the dashboard
Add link to image count in dashboard to open images view.
-rw-r--r-- | ogcp/templates/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html index 1fe473e..7cd300b 100644 --- a/ogcp/templates/dashboard.html +++ b/ogcp/templates/dashboard.html @@ -27,7 +27,7 @@ <td>{{ server.time_dict.boot }}</td> <td>{{ server.time_dict.start }}</td> <td>{{ server.clients | length }}</td> - <td>{{ server.images | length }}</td> + <td><a href="{{ url_for('images') }}">{{ server.images | length }}</a></td> <td> {% set disk = server.disk %} {% if disk['total'] != 0 %} |