aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorThiago Avelino <thiago@avelino.xxx>2017-01-01 00:51:10 -0200
committerLunny Xiao <xiaolunwen@gmail.com>2017-01-01 10:51:10 +0800
commit787fda53efc65916294caa6faf4aa8ecaf6cf86c (patch)
tree73fcabf10a76b18b0aa53d1dee0e40883a8d2586 /templates
parenta09a3dcabb566785208edb0df85a76c0303d4d52 (diff)
downloadgitea-787fda53efc65916294caa6faf4aa8ecaf6cf86c.tar.gz
gitea-787fda53efc65916294caa6faf4aa8ecaf6cf86c.zip
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)
Diffstat (limited to 'templates')
-rw-r--r--templates/explore/users.tmpl2
-rw-r--r--templates/user/profile.tmpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/explore/users.tmpl b/templates/explore/users.tmpl
index 09091df253..84ab7ad7fb 100644
--- a/templates/explore/users.tmpl
+++ b/templates/explore/users.tmpl
@@ -16,7 +16,7 @@
{{if .Location}}
<i class="octicon octicon-location"></i> {{.Location}}
{{end}}
- {{if and .Email $.IsSigned}}
+ {{if and $.ShowUserEmail .Email $.IsSigned}}
<i class="octicon octicon-mail"></i>
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
{{end}}
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}}
<li><i class="octicon octicon-location"></i> {{.Owner.Location}}</li>
{{end}}
- {{if and .Owner.Email .IsSigned}}
+ {{if and $.ShowUserEmail .Owner.Email .IsSigned}}
<li>
<i class="octicon octicon-mail"></i>
<a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a>