diff options
author | Gibheer <gibheer@gmail.com> | 2015-11-18 22:32:31 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2015-11-18 22:32:31 +0100 |
commit | 56006da34b0e580e1585439b1ee603f8cbe36a48 (patch) | |
tree | 8152e7da613bd9fe24807da51f352bd0b97d99e3 /templates/base | |
parent | efea642d6cf419c9587d44b95ff2bc04e89f7bfe (diff) | |
download | gitea-56006da34b0e580e1585439b1ee603f8cbe36a48.tar.gz gitea-56006da34b0e580e1585439b1ee603f8cbe36a48.zip |
fix #1957 - disable version display
This allows the admin to disable the version information about gogs and
go in use in the footer.
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/footer.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 686b82f24d..f3eb250618 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -2,7 +2,7 @@ <footer> <div class="ui container"> <div class="ui left"> - © 2015 Gogs {{.i18n.Tr "version"}}: {{AppVer}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> + © 2015 Gogs {{ if .ShowFooterVersion }}{{.i18n.Tr "version"}}: {{AppVer}}{{ end }} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> </div> <div class="ui right links"> {{if .ShowFooterBranding}} @@ -20,7 +20,7 @@ </div> </div> <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> - <span class="version">{{GoVer}}</span> + {{ if .ShowFooterVersion }}<span class="version">{{GoVer}}</span>{{ end }} </div> </div> </footer> @@ -46,4 +46,4 @@ <script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> <script src="{{AppSubUrl}}/js/libs/clipboard-1.5.3.min.js"></script> -</html>
\ No newline at end of file +</html> |