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