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