2022-10-13 08:31:10 +00:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2023-09-10 10:27:23 +00:00
|
|
|
<div class="ui segments repository-summary gt-mt-2 gt-mb-0">
|
2020-02-11 09:34:17 +00:00
|
|
|
<div class="ui segment sub-menu repository-menu">
|
2023-09-10 10:27:23 +00:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
|
|
<a class="item muted {{if .PageIsCommits}}active{{end}}" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{svg "octicon-history"}} <b>{{ctx.Locale.PrettyNumber .CommitsCount}}</b> {{ctx.Locale.TrN .CommitsCount "repo.commit" "repo.commits"}}
|
2023-09-10 10:27:23 +00:00
|
|
|
</a>
|
|
|
|
<a class="item muted {{if .PageIsBranches}}active{{end}}" href="{{.RepoLink}}/branches">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{svg "octicon-git-branch"}} <b>{{ctx.Locale.PrettyNumber .BranchesCount}}</b> {{ctx.Locale.TrN .BranchesCount "repo.branch" "repo.branches"}}
|
2023-09-10 10:27:23 +00:00
|
|
|
</a>
|
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
|
|
|
<a class="item muted {{if .PageIsTagList}}active{{end}}" href="{{.RepoLink}}/tags">
|
2023-09-25 13:15:51 +00:00
|
|
|
{{svg "octicon-tag"}} <b>{{ctx.Locale.PrettyNumber .NumTags}}</b> {{ctx.Locale.TrN .NumTags "repo.tag" "repo.tags"}}
|
2023-09-10 10:27:23 +00:00
|
|
|
</a>
|
2020-02-11 09:34:17 +00:00
|
|
|
{{end}}
|
2023-09-10 10:27:23 +00:00
|
|
|
<span class="item not-mobile" {{if not (eq .Repository.Size 0)}}data-tooltip-content="{{.Repository.SizeDetailsString}}"{{end}}>
|
|
|
|
{{$fileSizeFormatted := FileSize .Repository.Size}}{{/* the formatted string is always "{val} {unit}" */}}
|
|
|
|
{{$fileSizeFields := StringUtils.Split $fileSizeFormatted " "}}
|
2023-09-25 13:15:51 +00:00
|
|
|
{{svg "octicon-database"}} <b>{{ctx.Locale.PrettyNumber (index $fileSizeFields 0)}}</b> {{index $fileSizeFields 1}}
|
2023-09-10 10:27:23 +00:00
|
|
|
</span>
|
|
|
|
{{end}}
|
2020-02-11 09:34:17 +00:00
|
|
|
</div>
|
2022-08-25 21:55:52 +00:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}}
|
2023-02-19 04:06:14 +00:00
|
|
|
<div class="ui segment sub-menu language-stats-details gt-hidden">
|
2023-09-10 10:27:23 +00:00
|
|
|
{{range .LanguageStats}}
|
|
|
|
<div class="item">
|
|
|
|
<i class="color-icon" style="background-color: {{.Color}}"></i>
|
|
|
|
<span class="gt-font-semibold">
|
|
|
|
{{if eq .Language "other"}}
|
2023-09-25 13:15:51 +00:00
|
|
|
{{ctx.Locale.Tr "repo.language_other"}}
|
2023-09-10 10:27:23 +00:00
|
|
|
{{else}}
|
|
|
|
{{.Language}}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
{{.Percentage}}%
|
2020-02-11 09:34:17 +00:00
|
|
|
</div>
|
2023-09-10 10:27:23 +00:00
|
|
|
{{end}}
|
2017-10-26 00:49:16 +00:00
|
|
|
</div>
|
2023-09-10 10:27:23 +00:00
|
|
|
<a class="ui segment language-stats show-panel toggle" data-panel=".repository-summary > .sub-menu">
|
2020-02-11 09:34:17 +00:00
|
|
|
{{range .LanguageStats}}
|
2023-10-22 13:35:58 +00:00
|
|
|
<div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}} data-tooltip-follow-cursor="horizontal"></div>
|
2020-02-11 09:34:17 +00:00
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-10-26 00:49:16 +00:00
|
|
|
</div>
|
2022-10-13 08:31:10 +00:00
|
|
|
{{end}}
|