2022-10-13 08:31:10 +00:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2022-08-25 21:55:52 +00:00
|
|
|
<div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}} repository-summary-language-stats{{end}} mt-2 mb-0">
|
2020-02-11 09:34:17 +00:00
|
|
|
<div class="ui segment sub-menu repository-menu">
|
|
|
|
<div class="ui two horizontal center link list">
|
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
|
|
<div class="item{{if .PageIsCommits}} active{{end}}">
|
2022-11-13 05:55:19 +00:00
|
|
|
<a class="ui" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">{{svg "octicon-history"}} <b>{{JsPrettyNumber .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}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<a class="ui" 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}}
|
|
|
|
<div class="item">
|
2022-06-27 20:58:46 +00:00
|
|
|
<a class="ui" 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">
|
2021-12-03 03:33:34 +00:00
|
|
|
<span class="ui">{{svg "octicon-database"}} <b>{{FileSize .Repository.Size}}</b></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}}
|
2020-02-11 09:34:17 +00:00
|
|
|
<div class="ui segment sub-menu language-stats-details" style="display: none">
|
|
|
|
<div class="ui horizontal center link list">
|
|
|
|
{{range .LanguageStats}}
|
2020-12-20 18:00:03 +00:00
|
|
|
<div class="item df ac jc">
|
2022-08-25 21:55:52 +00:00
|
|
|
<i class="color-icon mr-3" style="background-color: {{.Color}}"></i>
|
2020-12-20 18:00:03 +00:00
|
|
|
<span class="bold 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}}
|
2022-09-05 06:04:18 +00:00
|
|
|
<div class="bar tooltip" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-placement="top" data-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}}
|