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