2022-10-13 16:31:10 +08:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-25 00:42:49 +08:00
|
|
|
<div class="ui segments repository-summary tw-mt-1 tw-mb-0">
|
2020-02-11 17:34:17 +08:00
|
|
|
<div class="ui segment sub-menu repository-menu">
|
2024-04-17 16:31:37 +08:00
|
|
|
{{if and (.Permission.CanRead ctx.Consts.RepoUnitTypeCode) (not .IsEmptyRepo)}}
|
2023-09-10 18:27:23 +08:00
|
|
|
<a class="item muted {{if .PageIsCommits}}active{{end}}" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">
|
2023-09-25 20:42:40 +08:00
|
|
|
{{svg "octicon-history"}} <b>{{ctx.Locale.PrettyNumber .CommitsCount}}</b> {{ctx.Locale.TrN .CommitsCount "repo.commit" "repo.commits"}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
|
|
|
<a class="item muted {{if .PageIsBranches}}active{{end}}" href="{{.RepoLink}}/branches">
|
2023-09-25 20:42:40 +08:00
|
|
|
{{svg "octicon-git-branch"}} <b>{{ctx.Locale.PrettyNumber .BranchesCount}}</b> {{ctx.Locale.TrN .BranchesCount "repo.branch" "repo.branches"}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
2024-04-17 16:31:37 +08:00
|
|
|
{{if $.Permission.CanRead ctx.Consts.RepoUnitTypeCode}}
|
2023-09-10 18:27:23 +08:00
|
|
|
<a class="item muted {{if .PageIsTagList}}active{{end}}" href="{{.RepoLink}}/tags">
|
2023-09-25 20:42:40 +08:00
|
|
|
{{svg "octicon-tag"}} <b>{{ctx.Locale.PrettyNumber .NumTags}}</b> {{ctx.Locale.TrN .NumTags "repo.tag" "repo.tags"}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
2020-02-11 17:34:17 +08:00
|
|
|
{{end}}
|
2024-10-02 03:25:08 +08:00
|
|
|
<span class="item not-mobile" {{if not (eq .Repository.Size 0)}}data-tooltip-placement="top" data-tooltip-content="{{.Repository.SizeDetailsString}}"{{end}}>
|
2023-09-10 18:27:23 +08:00
|
|
|
{{$fileSizeFormatted := FileSize .Repository.Size}}{{/* the formatted string is always "{val} {unit}" */}}
|
|
|
|
{{$fileSizeFields := StringUtils.Split $fileSizeFormatted " "}}
|
2023-09-25 20:42:40 +08:00
|
|
|
{{svg "octicon-database"}} <b>{{ctx.Locale.PrettyNumber (index $fileSizeFields 0)}}</b> {{index $fileSizeFields 1}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</span>
|
|
|
|
{{end}}
|
2020-02-11 17:34:17 +08:00
|
|
|
</div>
|
2017-10-26 08:49:16 +08:00
|
|
|
</div>
|
2022-10-13 16:31:10 +08:00
|
|
|
{{end}}
|