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