forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tags list for repos whose release setting is disabled (go-gitea#2…
…3465) (go-gitea#24369) Backport go-gitea#23465 Close go-gitea#23427 Co-Author: @wxiaoguang If a repo's release setting is enabled, the logic has't changed. Clicking the "Tags" button will jump to `/{user}/{repo}/tags` and `templates/repo/release/list.tmpl` template will be used. <img src="https://user-images.githubusercontent.com/15528715/224939362-bd8974fd-08b0-4f79-a114-3389d15847ca.png" width="600px" /> If the release setting is disabled, clicking the "Tags" button will still jump to `/{user}/{repo}/tags` but a new template `templates/repo/tag/list.tmpl` will be used. <img src="https://user-images.githubusercontent.com/15528715/233834564-74741e49-f4e9-47c8-ac12-e306642798dc.png" width="600px" /> Since both templates above need to render the tags list, I moved the tags list to a shared template located in `templates/repo/tag/table.tmpl`.
- Loading branch information
Showing
9 changed files
with
280 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{$canReadReleases := $.Permission.CanRead $.UnitTypeReleases}} | ||
{{$canReadCode := $.Permission.CanRead $.UnitTypeCode}} | ||
|
||
{{if $canReadReleases}} | ||
<h2 class="ui compact small menu header"> | ||
<a class="{{if .PageIsReleaseList}}active {{end}}item" href="{{.RepoLink}}/releases">{{.locale.Tr "repo.release.releases"}}</a> | ||
{{if $canReadCode}} | ||
<a class="{{if .PageIsTagList}}active {{end}}item" href="{{.RepoLink}}/tags">{{.locale.Tr "repo.release.tags"}}</a> | ||
{{end}} | ||
</h2> | ||
|
||
{{if .EnableFeed}} | ||
<a href="{{.RepoLink}}/{{if .PageIsTagList}}tags{{else}}releases{{end}}.rss"><i class="ui grey icon gt-ml-3" data-tooltip-content="{{.locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</i></a> | ||
{{end}} | ||
{{else if $canReadCode}} | ||
{{template "repo/sub_menu" .}} | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{{template "base/head" .}} | ||
|
||
<div role="main" aria-label="{{.Title}}" class="page-content repository tags"> | ||
{{template "repo/header" .}} | ||
<div class="ui container"> | ||
{{template "base/alert" .}} | ||
{{template "repo/sub_menu_release_tag" .}} | ||
|
||
<div class="ui divider"></div> | ||
|
||
<h4 class="ui top attached header"> | ||
<div class="five wide column gt-df gt-ac"> | ||
{{svg "octicon-tag" 16 "gt-mr-2"}}{{.locale.Tr "repo.release.tags"}} | ||
</div> | ||
</h4> | ||
|
||
{{$canReadReleases := $.Permission.CanRead $.UnitTypeReleases}} | ||
|
||
<div class="ui attached table segment"> | ||
<table class="ui very basic striped fixed table single line" id="tags-table"> | ||
<tbody class="tag-list"> | ||
{{range $idx, $release := .Releases}} | ||
<tr> | ||
<td class="tag"> | ||
<h3 class="release-tag-name gt-mb-3"> | ||
{{if $canReadReleases}} | ||
<a class="gt-df gt-ac" href="{{$.RepoLink}}/releases/tag/{{.TagName | PathEscapeSegments}}" rel="nofollow">{{.TagName}}</a> | ||
{{else}} | ||
<a class="gt-df gt-ac" href="{{$.RepoLink}}/src/tag/{{.TagName | PathEscapeSegments}}" rel="nofollow">{{.TagName}}</a> | ||
{{end}} | ||
</h3> | ||
<div class="download gt-df gt-ac"> | ||
{{if $.Permission.CanRead $.UnitTypeCode}} | ||
{{if .CreatedUnix}} | ||
<span class="gt-mr-3">{{svg "octicon-clock" 16 "gt-mr-2"}}{{TimeSinceUnix .CreatedUnix $.locale}}</span> | ||
{{end}} | ||
|
||
<a class="gt-mr-3 gt-mono muted" href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow">{{svg "octicon-git-commit" 16 "gt-mr-2"}}{{ShortSha .Sha1}}</a> | ||
|
||
{{if not $.DisableDownloadSourceArchives}} | ||
<a class="archive-link gt-mr-3 muted" href="{{$.RepoLink}}/archive/{{.TagName | PathEscapeSegments}}.zip" rel="nofollow">{{svg "octicon-file-zip" 16 "gt-mr-2"}}ZIP</a> | ||
<a class="archive-link gt-mr-3 muted" href="{{$.RepoLink}}/archive/{{.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow">{{svg "octicon-file-zip" 16 "gt-mr-2"}}TAR.GZ</a> | ||
{{end}} | ||
|
||
{{if (and $canReadReleases $.CanCreateRelease $release.IsTag)}} | ||
<a class="gt-mr-3 muted" href="{{$.RepoLink}}/releases/new?tag={{.TagName}}">{{svg "octicon-tag" 16 "gt-mr-2"}}{{$.locale.Tr "repo.release.new_release"}}</a> | ||
{{end}} | ||
|
||
{{if (and ($.Permission.CanWrite $.UnitTypeCode) $release.IsTag)}} | ||
<a class="ui delete-button gt-mr-3 muted" data-url="{{$.RepoLink}}/tags/delete" data-id="{{.ID}}"> | ||
{{svg "octicon-trash" 16 "gt-mr-2"}}{{$.locale.Tr "repo.release.delete_tag"}} | ||
</a> | ||
{{end}} | ||
|
||
{{if and $canReadReleases (not $release.IsTag)}} | ||
<a class="gt-mr-3 muted" href="{{$.RepoLink}}/releases/tag/{{.TagName | PathEscapeSegments}}">{{svg "octicon-tag" 16 "gt-mr-2"}}{{$.locale.Tr "repo.release.detail"}}</a> | ||
{{end}} | ||
{{end}} | ||
</div> | ||
</td> | ||
</tr> | ||
{{end}} | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
{{template "base/paginate" .}} | ||
</div> | ||
</div> | ||
|
||
{{if $.Permission.CanWrite $.UnitTypeCode}} | ||
<div class="ui small basic delete modal"> | ||
<div class="ui header"> | ||
{{svg "octicon-trash" 16 "gt-mr-2"}} | ||
{{.locale.Tr "repo.release.delete_tag"}} | ||
</div> | ||
<div class="content"> | ||
<p>{{.locale.Tr "repo.release.deletion_tag_desc"}}</p> | ||
</div> | ||
{{template "base/delete_modal_actions" .}} | ||
</div> | ||
{{end}} | ||
|
||
|
||
{{template "base/footer" .}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.