2022-10-13 14:01:10 +05:30
|
|
|
{{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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
|
|
|
<div class="ui segments repository-summary tw-mt-1 tw-mb-0">
|
2024-12-22 17:05:27 +00:00
|
|
|
<div class="ui segment repository-menu">
|
2023-09-10 18:27:23 +08:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
|
|
|
<a class="item muted {{if .PageIsCommits}}active{{end}}" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">
|
2026-04-03 14:11:48 +02:00
|
|
|
{{svg "octicon-history"}} {{ctx.Locale.TrPluralString .CommitsCount "counters.n_commits" (printf "<b>%s</b>" (ctx.Locale.PrettyNumber .CommitsCount) | TrustHTML)}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
|
|
|
|
<a class="item muted {{if .PageIsBranches}}active{{end}}" href="{{.RepoLink}}/branches">
|
2026-04-03 14:11:48 +02:00
|
|
|
{{svg "octicon-git-branch"}} {{ctx.Locale.TrPluralString .BranchesCount "counters.n_branches" (printf "<b>%s</b>" (ctx.Locale.PrettyNumber .BranchesCount) | TrustHTML)}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
|
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
|
|
|
|
<a class="item muted {{if .PageIsTagList}}active{{end}}" href="{{.RepoLink}}/tags">
|
2026-04-03 14:11:48 +02:00
|
|
|
{{svg "octicon-tag"}} {{ctx.Locale.TrPluralString .NumTags "counters.n_tags" (printf "<b>%s</b>" (ctx.Locale.PrettyNumber .NumTags) | TrustHTML)}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</a>
|
2020-02-11 11:34:17 +02:00
|
|
|
{{end}}
|
2024-12-22 17:05:27 +00:00
|
|
|
<span class="item" {{if not (eq .Repository.Size 0)}}data-tooltip-content="{{.Repository.SizeDetailsString ctx.Locale}}"{{end}}>
|
2024-03-31 20:17:12 +05:00
|
|
|
{{$fileSizeFields := ctx.Locale.TrSize .Repository.Size}}
|
2024-03-19 15:52:32 +05:00
|
|
|
{{svg "octicon-database"}} <b>{{$fileSizeFields.PrettyNumber}}</b> {{$fileSizeFields.TranslatedUnit}}
|
2023-09-10 18:27:23 +08:00
|
|
|
</span>
|
|
|
|
|
{{end}}
|
2020-02-11 11:34:17 +02:00
|
|
|
</div>
|
2022-08-25 23:55:52 +02:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}}
|
2025-10-05 20:36:35 +02:00
|
|
|
<details class="stats" id="language-stats">
|
|
|
|
|
<summary>
|
|
|
|
|
<stats-bar>
|
|
|
|
|
{{range .LanguageStats}}
|
|
|
|
|
<div class="slice" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}} data-tooltip-follow-cursor="horizontal"></div>
|
|
|
|
|
{{end}}
|
|
|
|
|
</stats-bar>
|
|
|
|
|
</summary>
|
|
|
|
|
<ul>
|
|
|
|
|
{{range .LanguageStats}}
|
|
|
|
|
<li>
|
|
|
|
|
<i class="color-icon" style="background-color: {{.Color}}"></i>
|
|
|
|
|
<span>
|
|
|
|
|
{{if eq .Language "other"}}
|
|
|
|
|
{{ctx.Locale.Tr "repo.language_other"}}
|
|
|
|
|
{{else}}
|
|
|
|
|
{{.Language}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</span>
|
|
|
|
|
{{.Percentage}}%
|
|
|
|
|
</li>
|
2023-09-10 18:27:23 +08:00
|
|
|
{{end}}
|
2025-10-05 20:36:35 +02:00
|
|
|
</ul>
|
|
|
|
|
</details>
|
2020-02-11 11:34:17 +02:00
|
|
|
{{end}}
|
2017-10-26 02:49:16 +02:00
|
|
|
</div>
|
2022-10-13 14:01:10 +05:30
|
|
|
{{end}}
|