2020-11-29 06:22:04 +00:00
|
|
|
<div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats }} repository-summary-language-stats{{end}} mt-3">
|
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}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
<a class="ui" href="{{.RepoLink}}/commits{{if .IsViewBranch}}/branch{{else if .IsViewTag}}/tag{{else if .IsViewCommit}}/commit{{end}}/{{EscapePound .BranchName}}">{{svg "octicon-history"}} <b>{{.CommitsCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .CommitsCount "repo.commit" "repo.commits") }}</a>
|
2020-02-11 09:34:17 +00:00
|
|
|
</div>
|
|
|
|
<div class="item{{if .PageIsBranches}} active{{end}}">
|
2021-01-26 15:36:53 +00:00
|
|
|
<a class="ui" href="{{.RepoLink}}/branches">{{svg "octicon-git-branch"}} <b>{{.BranchesCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .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">
|
2020-11-05 14:20:42 +00:00
|
|
|
<a class="ui" href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.i18n.Tr (TrN .i18n.Lang .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">
|
2020-09-11 20:19:00 +00:00
|
|
|
<span class="ui">{{svg "octicon-database"}} <b>{{SizeFmt .Repository.Size}}</b></span>
|
2020-02-11 09:34:17 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats }}
|
|
|
|
<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">
|
|
|
|
<i class="color-icon mr-3" style="background-color: {{ .Color }}"></i>
|
|
|
|
<span class="bold mr-3">
|
|
|
|
{{if eq .Language "other" }}
|
|
|
|
{{ $.i18n.Tr "repo.language_other" }}
|
|
|
|
{{else}}
|
|
|
|
{{ .Language }}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
{{ .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}}
|
|
|
|
<div class="bar" style="width: {{ .Percentage }}%; background-color: {{ .Color }}"> </div>
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-10-26 00:49:16 +00:00
|
|
|
</div>
|