From 9d1583e80d1713b3b3428b863f5c4e655ad02334 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 04 2015 08:28:42 +0000 Subject: Fix the user info page when we hide some section on the front page For running pagure as front-end for pkgs.fp.o we added the option to hide by default some sections (such as all the repos) when the user is logged out. This lead to the situation where we hide all the projects on the front page but this hides the user's projects on the user's page. With this page, we can turn off the hide feature for the user's page. --- diff --git a/pagure/templates/_render_repo.html b/pagure/templates/_render_repo.html index c1b056a..dd3beaa 100644 --- a/pagure/templates/_render_repo.html +++ b/pagure/templates/_render_repo.html @@ -33,9 +33,9 @@ {% macro render_repos( - list, total, pagetitle, page, title, count, id, username=None) %} + list, total, pagetitle, page, title, count, id, username=None, hide=True) %}