Files

20 lines
1.0 KiB
Handlebars
Raw Permalink Normal View History

{{if and (not .HideRepoInfo) (not .IsBlame)}}
2025-01-24 18:35:28 +01:00
<div class="ui segments repository-summary tw-my-0">
<div class="ui segment sub-menu repository-menu">
2024-04-17 16:31:37 +08:00
{{if and (.Permission.CanRead ctx.Consts.RepoUnitTypeCode) (not .IsEmptyRepo)}}
2025-01-16 21:52:21 +08:00
<a class="item muted {{if .PageIsCommits}}active{{end}}" href="{{.RepoLink}}/commits/{{.RefFullName.RefWebLinkPath}}">
2023-09-25 20:42:40 +08:00
{{svg "octicon-history"}} <b>{{ctx.Locale.PrettyNumber .CommitsCount}}</b> {{ctx.Locale.TrN .CommitsCount "repo.commit" "repo.commits"}}
2023-09-10 18:27:23 +08:00
</a>
<a class="item muted {{if .PageIsBranches}}active{{end}}" href="{{.RepoLink}}/branches">
2023-09-25 20:42:40 +08:00
{{svg "octicon-git-branch"}} <b>{{ctx.Locale.PrettyNumber .BranchesCount}}</b> {{ctx.Locale.TrN .BranchesCount "repo.branch" "repo.branches"}}
2023-09-10 18:27:23 +08:00
</a>
2024-04-17 16:31:37 +08:00
{{if $.Permission.CanRead ctx.Consts.RepoUnitTypeCode}}
2023-09-10 18:27:23 +08:00
<a class="item muted {{if .PageIsTagList}}active{{end}}" href="{{.RepoLink}}/tags">
2023-09-25 20:42:40 +08:00
{{svg "octicon-tag"}} <b>{{ctx.Locale.PrettyNumber .NumTags}}</b> {{ctx.Locale.TrN .NumTags "repo.tag" "repo.tags"}}
2023-09-10 18:27:23 +08:00
</a>
{{end}}
2023-09-10 18:27:23 +08:00
{{end}}
</div>
2017-10-26 02:49:16 +02:00
</div>
{{end}}