From 16045dd44dccd6de38b3ecf13f7f131413e11676 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Thu, 30 Nov 2023 18:06:25 +0300 Subject: Fix dataset page links in Phenotypes UI page. Signed-off-by: Munyoki Kilyungi --- wqflask/wqflask/templates/phenotype.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wqflask/wqflask/templates/phenotype.html b/wqflask/wqflask/templates/phenotype.html index 7eb86328..9bc958b9 100644 --- a/wqflask/wqflask/templates/phenotype.html +++ b/wqflask/wqflask/templates/phenotype.html @@ -90,7 +90,8 @@ Database {% for database in metadata.dataset %} - {{ database.prefLabel }}
+ {% set dataset_url = url_for('get_dataset', name=database.identifier)%} + {{ database.prefLabel }}
{% endfor %} -- cgit v1.2.3