2022-10-13 10:31:10 +02:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}} repository-summary-language-stats{{end}} gt-mt-2 gt-mb-0">
|
2020-02-11 10:34:17 +01:00
|
|
|
<div class="ui segment sub-menu repository-menu">
|
2023-04-04 02:47:23 +02:00
|
|
|
<div class="ui two horizontal center list">
|
2020-02-11 10:34:17 +01:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
|
|
<div class="item{{if .PageIsCommits}} active{{end}}">
|
2023-04-17 05:37:23 +02:00
|
|
|
<a href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">{{svg "octicon-history"}} <b>{{.locale.PrettyNumber .CommitsCount}}</b> {{.locale.TrN .CommitsCount "repo.commit" "repo.commits"}}</a>
|
2020-02-11 10:34:17 +01:00
|
|
|
</div>
|
|
|
|
<div class="item{{if .PageIsBranches}} active{{end}}">
|
2023-03-24 11:35:38 +01:00
|
|
|
<a href="{{.RepoLink}}/branches">{{svg "octicon-git-branch"}} <b>{{.BranchesCount}}</b> {{.locale.TrN .BranchesCount "repo.branch" "repo.branches"}}</a>
|
2020-02-11 10:34:17 +01:00
|
|
|
</div>
|
2020-11-03 00:10:22 +01:00
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
2023-04-25 18:29:00 +02:00
|
|
|
<div class="item{{if .PageIsTagList}} active{{end}}">
|
2023-03-24 11:35:38 +01:00
|
|
|
<a href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.locale.TrN .NumTags "repo.tag" "repo.tags"}}</a>
|
2020-11-03 00:10:22 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-02-11 10:34:17 +01:00
|
|
|
<div class="item">
|
2023-04-28 23:23:19 +02:00
|
|
|
{{$fileSizeFormatted := FileSize .Repository.Size}}{{/* the formatted string is always "{val} {unit}" */}}
|
|
|
|
{{$fileSizeFields := StringUtils.Split $fileSizeFormatted " "}}
|
|
|
|
<span>{{svg "octicon-database"}} <b>{{.locale.PrettyNumber (index $fileSizeFields 0)}}</b> {{index $fileSizeFields 1}}</span>
|
2020-02-11 10:34:17 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-25 23:55:52 +02:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}}
|
2023-02-19 05:06:14 +01:00
|
|
|
<div class="ui segment sub-menu language-stats-details gt-hidden">
|
2023-04-04 02:47:23 +02:00
|
|
|
<div class="ui horizontal center list">
|
2020-02-11 10:34:17 +01:00
|
|
|
{{range .LanguageStats}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="item gt-df gt-ac gt-jc">
|
|
|
|
<i class="color-icon gt-mr-3" style="background-color: {{.Color}}"></i>
|
2023-05-22 01:37:32 +02:00
|
|
|
<span class="gt-font-semibold gt-mr-3">
|
2022-08-25 23:55:52 +02:00
|
|
|
{{if eq .Language "other"}}
|
|
|
|
{{$.locale.Tr "repo.language_other"}}
|
2020-12-20 19:00:03 +01:00
|
|
|
{{else}}
|
2022-08-25 23:55:52 +02:00
|
|
|
{{.Language}}
|
2020-12-20 19:00:03 +01:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2022-08-25 23:55:52 +02:00
|
|
|
{{.Percentage}}%
|
2019-11-13 01:45:19 +01:00
|
|
|
</div>
|
2020-02-11 10:34:17 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-10-26 02:49:16 +02:00
|
|
|
</div>
|
2020-02-11 10:34:17 +01:00
|
|
|
<a class="ui segment language-stats">
|
|
|
|
{{range .LanguageStats}}
|
2023-03-24 11:35:38 +01:00
|
|
|
<div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}}> </div>
|
2020-02-11 10:34:17 +01:00
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-10-26 02:49:16 +02:00
|
|
|
</div>
|
2022-10-13 10:31:10 +02:00
|
|
|
{{end}}
|