From 787fda53efc65916294caa6faf4aa8ecaf6cf86c Mon Sep 17 00:00:00 2001 From: Thiago Avelino Date: Sun, 1 Jan 2017 00:51:10 -0200 Subject: UI config to toggle whether user email shows up in Explore Users (#336) * UI config to toggle whether user email shows up in Explore Users * Recommendation made by @tboerger https://github.com/go-gitea/gitea/pull/336/commits/66a1c59fe730eff019ce100673c6800cce7d102d#r94122732 * fixed typo, rename ShowUserEmailInExplore to ShowUserEmail * Fixed typo merged conflict * Hide email in the user profile page if you are active ShowUserEmail ref https://github.com/go-gitea/gitea/pull/336#issuecomment-269843725 * Please replace MustBool() with MustBool(true) --- templates/user/profile.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/user') diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index cfb646ace1..37f94d2b79 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -22,7 +22,7 @@ {{if .Owner.Location}}
  • {{.Owner.Location}}
  • {{end}} - {{if and .Owner.Email .IsSigned}} + {{if and $.ShowUserEmail .Owner.Email .IsSigned}}
  • {{.Owner.Email}} -- cgit v1.2.3