diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-04-18 09:47:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 11:47:15 -0300 |
commit | 4f597b1866954ff94999a52af1a41fed06f0143e (patch) | |
tree | 0f260a237d33e55b259bb5cf5671c67135799d79 /templates/repo/release | |
parent | 1b86f174ce99b579df35c32e800551b1fd1df807 (diff) | |
download | gitea-4f597b1866954ff94999a52af1a41fed06f0143e.tar.gz gitea-4f597b1866954ff94999a52af1a41fed06f0143e.zip |
Add single release page and latest redirect (#11102)
* Add single release and latest release routes
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Update API and move latest search to models
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Fix swagger
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Diffstat (limited to 'templates/repo/release')
-rw-r--r-- | templates/repo/release/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index 22aea09f7b..d0b160a1c0 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -49,7 +49,7 @@ </div> {{else}} <h3> - <a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}">{{.Title}}</a> + <a href="{{$.RepoLink}}/releases/tag/{{.TagName | EscapePound}}">{{.Title}}</a> {{if $.CanCreateRelease}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName | EscapePound}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}} </h3> <p class="text grey"> |