2022-10-13 08:31:10 +00:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2023-02-13 17:59:59 +00: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 09:34:17 +00:00
|
|
|
<div class="ui segment sub-menu repository-menu">
|
2023-04-04 00:47:23 +00:00
|
|
|
<div class="ui two horizontal center list">
|
2020-02-11 09:34:17 +00:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
|
|
<div class="item{{if .PageIsCommits}} active{{end}}">
|
2023-04-17 03:37:23 +00: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 09:34:17 +00:00
|
|
|
</div>
|
|
|
|
<div class="item{{if .PageIsBranches}} active{{end}}">
|
2023-03-24 10:35:38 +00:00
|
|
|
<a href="{{.RepoLink}}/branches">{{svg "octicon-git-branch"}} <b>{{.BranchesCount}}</b> {{.locale.TrN .BranchesCount "repo.branch" "repo.branches"}}</a>
|
2020-02-11 09:34:17 +00:00
|
|
|
</div>
|
2020-11-02 23:10:22 +00:00
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
2023-04-25 16:29:00 +00:00
|
|
|
<div class="item{{if .PageIsTagList}} active{{end}}">
|
2023-03-24 10:35:38 +00:00
|
|
|
<a href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.locale.TrN .NumTags "repo.tag" "repo.tags"}}</a>
|
2020-11-02 23:10:22 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-02-11 09:34:17 +00:00
|
|
|
<div class="item">
|
2023-04-28 21:23:19 +00: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 09:34:17 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</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-04-04 00:47:23 +00:00
|
|
|
<div class="ui horizontal center list">
|
2020-02-11 09:34:17 +00:00
|
|
|
{{range .LanguageStats}}
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="item gt-df gt-ac gt-jc">
|
|
|
|
<i class="color-icon gt-mr-3" style="background-color: {{.Color}}"></i>
|
2023-05-21 23:37:32 +00:00
|
|
|
<span class="gt-font-semibold gt-mr-3">
|
2022-08-25 21:55:52 +00:00
|
|
|
{{if eq .Language "other"}}
|
|
|
|
{{$.locale.Tr "repo.language_other"}}
|
2020-12-20 18:00:03 +00:00
|
|
|
{{else}}
|
2022-08-25 21:55:52 +00:00
|
|
|
{{.Language}}
|
2020-12-20 18:00:03 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2022-08-25 21:55:52 +00:00
|
|
|
{{.Percentage}}%
|
2019-11-13 00:45:19 +00:00
|
|
|
</div>
|
2020-02-11 09:34:17 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-10-26 00:49:16 +00:00
|
|
|
</div>
|
2020-02-11 09:34:17 +00:00
|
|
|
<a class="ui segment language-stats">
|
|
|
|
{{range .LanguageStats}}
|
2023-03-24 10:35:38 +00:00
|
|
|
<div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}}> </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}}
|