diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-10-16 02:14:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 02:14:34 -0400 |
commit | 8edda8b446200545b36432b57d00cd1972a5cb7e (patch) | |
tree | 2d4b6dd12a1f247d0e1b2459350b14e963f1b162 /templates | |
parent | e18ea9e3491e872d0a0736322ace4def5680432c (diff) | |
download | gitea-8edda8b446200545b36432b57d00cd1972a5cb7e.tar.gz gitea-8edda8b446200545b36432b57d00cd1972a5cb7e.zip |
Add simple update checker to Gitea (#17212)
* Add simple update checker to Gitea
* update struct and remove comments
* fix lint
* Update custom/conf/app.example.ini
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-authored-by: delvh <dev.lh@web.de>
* Update custom/conf/app.example.ini
Co-authored-by: delvh <dev.lh@web.de>
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-authored-by: delvh <dev.lh@web.de>
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-authored-by: Steven <61625851+justusbunsi@users.noreply.github.com>
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
* Update modules/cron/tasks_extended.go
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Update custom/conf/app.example.ini
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* take PR feedback into account and display banner on admin dashboard for alerts
* Add more detailed message
* placate lint
* update per feedback
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Steven <61625851+justusbunsi@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin/dashboard.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/admin/dashboard.tmpl b/templates/admin/dashboard.tmpl index de01f95eab..79f031882e 100644 --- a/templates/admin/dashboard.tmpl +++ b/templates/admin/dashboard.tmpl @@ -3,6 +3,11 @@ {{template "admin/navbar" .}} <div class="ui container"> {{template "base/alert" .}} + {{if .NeedUpdate}} + <div class="ui negative message flash-error"> + <p>"Gitea {{.RemoteVersion | Str2html}} is now available, you are running {{.AppVer | Str2html}}. Check the <a href="https://blog.gitea.io">blog</a> for more details.</p> + </div> + {{end}} <h4 class="ui top attached header"> {{.i18n.Tr "admin.dashboard.statistic"}} </h4> |