From cf54c1386caf2264aaaacf37322dc7c1cfc58a16 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Tue, 31 Oct 2023 09:58:03 +0100 Subject: [PATCH] Bugfix in grid model path --- spatial/templates/spatial/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spatial/templates/spatial/index.html b/spatial/templates/spatial/index.html index 28b0ff43..832c4e2c 100644 --- a/spatial/templates/spatial/index.html +++ b/spatial/templates/spatial/index.html @@ -31,7 +31,7 @@ {% if available_grid_models|length > 0 %} <ul> {% for model in available_grid_models %} - <li><a href="gridmap/{{model.model_id}}">{{ model.model_name }}</a></li> + <li><a href="gridmap/{{model.model_id}}/">{{ model.model_name }}</a></li> {% endfor %} </ul> {% else %} -- GitLab