2023-07-07 18:06:49 +00:00
|
|
|
{{template "base/alert" .}}
|
2023-11-21 20:03:19 +00:00
|
|
|
{{if .HasPackages}}
|
2023-07-07 18:06:49 +00:00
|
|
|
<form class="ui form ignore-dirty">
|
2024-03-14 23:24:59 +00:00
|
|
|
<div class="ui small fluid action input">
|
|
|
|
{{template "shared/search/input" dict "Value" .Query "Placeholder" (ctx.Locale.Tr "search.package_kind")}}
|
|
|
|
<select class="ui small dropdown" name="type">
|
2023-09-25 08:56:50 +00:00
|
|
|
<option value="">{{ctx.Locale.Tr "packages.filter.type"}}</option>
|
|
|
|
<option value="all">{{ctx.Locale.Tr "packages.filter.type.all"}}</option>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{range $type := .AvailableTypes}}
|
|
|
|
<option{{if eq $.PackageType $type}} selected="selected"{{end}} value="{{$type}}">{{$type.Name}}</option>
|
|
|
|
{{end}}
|
|
|
|
</select>
|
2024-03-14 23:24:59 +00:00
|
|
|
{{template "shared/search/button"}}
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2023-11-21 20:03:19 +00:00
|
|
|
{{end}}
|
2023-08-31 21:28:45 +00:00
|
|
|
<div>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{range .PackageDescriptors}}
|
2023-08-31 21:28:45 +00:00
|
|
|
<div class="flex-list">
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">
|
2024-03-04 10:57:30 +00:00
|
|
|
<a href="{{.VersionWebLink}}">{{.Package.Name}}</a>
|
2023-07-07 18:06:49 +00:00
|
|
|
<span class="ui label">{{svg .Package.Type.SVGName 16}} {{.Package.Type.Name}}</span>
|
2022-03-30 08:42:47 +00:00
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-item-body">
|
2023-09-25 12:42:40 +00:00
|
|
|
{{$timeStr := TimeSinceUnix .Version.CreatedUnix ctx.Locale}}
|
2023-07-07 18:06:49 +00:00
|
|
|
{{$hasRepositoryAccess := false}}
|
|
|
|
{{if .Repository}}
|
|
|
|
{{$hasRepositoryAccess = index $.RepositoryAccessMap .Repository.ID}}
|
|
|
|
{{end}}
|
|
|
|
{{if $hasRepositoryAccess}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "packages.published_by_in" $timeStr .Creator.HomeLink .Creator.GetDisplayName .Repository.Link .Repository.FullName}}
|
2023-07-07 18:06:49 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "packages.published_by" $timeStr .Creator.HomeLink .Creator.GetDisplayName}}
|
2022-07-27 11:58:21 +00:00
|
|
|
{{end}}
|
2022-03-30 08:42:47 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
</div>
|
2023-08-31 21:28:45 +00:00
|
|
|
</div>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{else}}
|
|
|
|
{{if not .HasPackages}}
|
2023-10-25 21:42:14 +00:00
|
|
|
<div class="empty-placeholder">
|
2023-07-07 18:06:49 +00:00
|
|
|
{{svg "octicon-package" 48}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<h2>{{ctx.Locale.Tr "packages.empty"}}</h2>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{if and .Repository .CanWritePackages}}
|
|
|
|
{{$packagesUrl := URLJoin .Owner.HomeLink "-" "packages"}}
|
2024-02-22 17:02:33 +00:00
|
|
|
<p>{{ctx.Locale.Tr "packages.empty.repo" $packagesUrl}}</p>
|
2023-07-07 18:06:49 +00:00
|
|
|
{{end}}
|
2024-02-22 17:02:33 +00:00
|
|
|
<p>{{ctx.Locale.Tr "packages.empty.documentation" "https://forgejo.org/docs/latest/user/packages/"}}</p>
|
2023-07-07 18:06:49 +00:00
|
|
|
</div>
|
|
|
|
{{else}}
|
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 16:42:49 +00:00
|
|
|
<p class="tw-py-4">{{ctx.Locale.Tr "packages.filter.no_result"}}</p>
|
2022-03-30 08:42:47 +00:00
|
|
|
{{end}}
|
2023-07-07 18:06:49 +00:00
|
|
|
{{end}}
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|