From eae1d067b1cedca9840eee1b1802439e51a62739 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 27 2018 10:34:29 +0000 Subject: Ensure there is a / between namespace and name in the activity panel Fixes https://pagure.io/pagure/issue/3543 Signed-off-by: Pierre-Yves Chibon --- diff --git a/pagure/templates/userdash_activity.html b/pagure/templates/userdash_activity.html index 901c8b7..550fab4 100644 --- a/pagure/templates/userdash_activity.html +++ b/pagure/templates/userdash_activity.html @@ -33,7 +33,7 @@ username=repo.user.username if repo.is_fork else None, namespace=repo.namespace) }}"> - {% if repo.is_fork %}{{ repo.user.user }}/{% endif %}{% if repo.namespace %}{{ repo.namespace }}{% endif %}{{ repo.name }} + {% if repo.is_fork %}{{ repo.user.user }}/{% endif %}{% if repo.namespace %}{{ repo.namespace }}/{% endif %}{{ repo.name }} {% endmacro %}