2023-09-25 10:56:50 +02:00
|
|
|
<p><a href="{{.PackageDescriptor.PackageWebLink}}">{{.PackageDescriptor.Package.Name}}</a> / <strong>{{ctx.Locale.Tr "packages.versions"}}</strong></p>
|
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="sort">
|
2023-09-25 10:56:50 +02:00
|
|
|
<option value="version_asc"{{if eq .Sort "version_asc"}} selected="selected"{{end}}>{{ctx.Locale.Tr "filter.string.asc"}}</option>
|
|
|
|
<option value="version_desc"{{if eq .Sort "version_desc"}} selected="selected"{{end}}>{{ctx.Locale.Tr "filter.string.desc"}}</option>
|
|
|
|
<option value="created_asc"{{if eq .Sort "created_asc"}} selected="selected"{{end}}>{{ctx.Locale.Tr "repo.issues.filter_sort.oldest"}}</option>
|
|
|
|
<option value="created_desc"{{if or (eq .Sort "") (eq .Sort "created_desc")}} selected="selected"{{end}}>{{ctx.Locale.Tr "repo.issues.filter_sort.latest"}}</option>
|
2023-07-07 20:06:49 +02:00
|
|
|
</select>
|
|
|
|
{{if eq .PackageDescriptor.Package.Type "container"}}
|
|
|
|
<select class="ui dropdown" name="tagged">
|
|
|
|
{{$isTagged := or (eq .Tagged "") (eq .Tagged "tagged")}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<option value="tagged"{{if $isTagged}} selected="selected"{{end}}>{{ctx.Locale.Tr "packages.filter.container.tagged"}}</option>
|
|
|
|
<option value="untagged"{{if not $isTagged}} selected="selected"{{end}}>{{ctx.Locale.Tr "packages.filter.container.untagged"}}</option>
|
2023-07-07 20:06:49 +02:00
|
|
|
</select>
|
2022-03-30 10:42:47 +02:00
|
|
|
{{end}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "explore.search"}}</button>
|
2022-03-30 10:42:47 +02:00
|
|
|
</div>
|
2023-07-07 20:06:49 +02:00
|
|
|
</form>
|
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">
|
|
|
|
<a class="flex-item-title" href="{{.FullWebLink}}">{{.Version.LowerVersion}}</a>
|
|
|
|
<div class="flex-item-body">
|
2023-09-25 14:42:40 +02:00
|
|
|
{{ctx.Locale.Tr "packages.published_by" (TimeSinceUnix .Version.CreatedUnix ctx.Locale) .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}}
|
2023-07-07 20:06:49 +02:00
|
|
|
</div>
|
|
|
|
</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}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<p class="gt-py-4">{{ctx.Locale.Tr "packages.filter.no_result"}}</p>
|
2023-07-07 20:06:49 +02:00
|
|
|
{{end}}
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|