From f0c570e5cbaeb4f5182d038cc8b35fa3077eb8fd Mon Sep 17 00:00:00 2001 From: hanfi <ccc@spahan.ch> Date: Fri, 5 May 2023 09:57:59 +0200 Subject: [PATCH] fix path --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 8cb5d55..6a18157 100644 --- a/templates/index.html +++ b/templates/index.html @@ -14,7 +14,7 @@ {% if storages[row][column].needs_processing %}border: 2px red solid;{% endif %};"> <div>{{row}}{{column}}</div> <div>{{ storages[row][column].size }}</div> - <a href="/{{row}}{{column}}" class="stretched-link"></a> + <a href="{{ url_for("get_storage", storage_name=f"{row}{column}") }}" class="stretched-link"></a> </td> {% endfor %} {% endfor %} -- GitLab