2023-08-01 03:43:42 +05:30
|
|
|
<div class="flex-list">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{range .Repos}}
|
2023-08-01 03:43:42 +05:30
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-08-08 12:59:35 +05:30
|
|
|
{{template "repo/icon" .}}
|
2023-08-01 03:43:42 +05:30
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-header">
|
|
|
|
<div class="flex-item-title">
|
2024-01-05 09:04:35 +05:30
|
|
|
{{if and (or $.PageIsExplore $.PageIsProfileStarList) .Owner}}
|
|
|
|
<a class="text primary name" href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>/
|
|
|
|
{{end}}
|
|
|
|
<a class="text primary name" href="{{.Link}}">{{.Name}}</a>
|
2023-08-01 03:43:42 +05:30
|
|
|
<span class="label-list">
|
|
|
|
{{if .IsArchived}}
|
2023-09-25 14:26:50 +05:30
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>
|
2020-12-08 09:44:28 +05:30
|
|
|
{{end}}
|
2023-10-17 02:36:15 +05:30
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.private"}}</span>
|
2020-12-08 09:44:28 +05:30
|
|
|
{{else}}
|
2023-10-17 02:36:15 +05:30
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.internal"}}</span>
|
2020-12-08 09:44:28 +05:30
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2023-10-17 02:36:15 +05:30
|
|
|
{{if .IsTemplate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.template"}}</span>
|
|
|
|
{{end}}
|
2024-01-19 21:35:02 +05:30
|
|
|
{{if eq .ObjectFormatName "sha256"}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.sha256"}}</span>
|
|
|
|
{{end}}
|
2023-08-01 03:43:42 +05:30
|
|
|
</span>
|
2020-12-08 09:44:28 +05:30
|
|
|
</div>
|
2024-03-21 22:34:03 +05:30
|
|
|
<div class="flex-item-trailing muted-links">
|
2023-08-01 03:43:42 +05:30
|
|
|
{{if .PrimaryLanguage}}
|
2024-03-21 22:34:03 +05:30
|
|
|
<a class="flex-text-inline" href="?q={{$.Keyword}}&sort={{$.SortType}}&language={{.PrimaryLanguage.Language}}{{if $.TabName}}&tab={{$.TabName}}{{end}}">
|
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 22:12:49 +05:30
|
|
|
<i class="color-icon tw-mr-2" style="background-color: {{.PrimaryLanguage.Color}}"></i>
|
2024-03-21 22:34:03 +05:30
|
|
|
{{.PrimaryLanguage.Language}}
|
2023-08-01 03:43:42 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if not $.DisableStars}}
|
2024-04-11 03:20:06 +05:30
|
|
|
<a class="flex-text-inline" href="{{.Link}}/stars" aria-label="{{ctx.Locale.TrN .NumStars "explore.stars_one" "explore.stars_few" .NumStars}}" {{if ge .NumStars 1000}}data-tooltip-content="{{.NumStars}}"{{end}}>
|
2024-03-28 20:18:56 +05:30
|
|
|
{{svg "octicon-star" 16}}
|
2024-04-11 03:20:06 +05:30
|
|
|
{{CountFmt .NumStars}}
|
2024-03-21 22:34:03 +05:30
|
|
|
</a>
|
2023-08-01 03:43:42 +05:30
|
|
|
{{end}}
|
2024-02-25 16:28:23 +05:30
|
|
|
{{if not $.DisableForks}}
|
2024-04-11 03:20:06 +05:30
|
|
|
<a class="flex-text-inline" href="{{.Link}}/forks" aria-label="{{ctx.Locale.TrN .NumForks "explore.forks_one" "explore.forks_few" .NumForks}}" {{if ge .NumForks 1000}}data-tooltip-content="{{.NumForks}}"{{end}}>
|
2024-03-28 20:18:56 +05:30
|
|
|
{{svg "octicon-git-branch" 16}}
|
2024-04-11 03:20:06 +05:30
|
|
|
{{CountFmt .NumForks}}
|
2024-03-21 22:34:03 +05:30
|
|
|
</a>
|
2024-02-25 16:28:23 +05:30
|
|
|
{{end}}
|
2023-08-01 03:43:42 +05:30
|
|
|
</div>
|
2020-12-08 09:44:28 +05:30
|
|
|
</div>
|
2022-08-26 03:25:52 +05:30
|
|
|
{{$description := .DescriptionHTML $.Context}}
|
2023-08-01 03:43:42 +05:30
|
|
|
{{if $description}}
|
|
|
|
<div class="flex-item-body">{{$description}}</div>
|
|
|
|
{{end}}
|
2022-08-26 03:25:52 +05:30
|
|
|
{{if .Topics}}
|
2023-08-01 03:43:42 +05:30
|
|
|
<div class="label-list">
|
2019-05-30 07:52:26 +05:30
|
|
|
{{range .Topics}}
|
2023-06-24 18:00:46 +05:30
|
|
|
{{if ne . ""}}<a class="ui label" href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1">{{.}}</a>{{end}}
|
2019-05-30 07:52:26 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-05-13 07:20:39 +05:30
|
|
|
{{end}}
|
2023-09-25 18:12:40 +05:30
|
|
|
<div class="flex-item-body">{{ctx.Locale.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix ctx.Locale}}</div>
|
2019-05-30 07:52:26 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2016-12-01 16:22:57 +05:30
|
|
|
{{else}}
|
|
|
|
<div>
|
2024-03-15 04:54:59 +05:30
|
|
|
{{ctx.Locale.Tr "search.no_results"}}
|
2016-12-01 16:22:57 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|