mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 17:54:26 +00:00
daaf0ad473
Backport #27227 by @denyskon Throughout the Gitea codebase, you can meet some weird constructions to make `locale.Tr` work in subtemplates. Since we now have `ctx.Locale.Tr` which solves that problem, clean up various templates which pass `locale` through `dict` or use some weird constructions like `$.root.locale` Going on, it would be great to replace every case of `$.locale.Tr` and `.locale.Tr` with `ctx.Locale.Tr`, but that needs to be done with patience. Co-authored-by: Denys Konovalov <kontakt@denyskon.de>
56 lines
2.1 KiB
Handlebars
56 lines
2.1 KiB
Handlebars
{{template "base/alert" .}}
|
|
<form class="ui form ignore-dirty">
|
|
<div class="ui fluid action input">
|
|
{{template "shared/searchinput" dict "Value" .Query "AutoFocus" true}}
|
|
<select class="ui dropdown" name="type">
|
|
<option value="">{{.locale.Tr "packages.filter.type"}}</option>
|
|
<option value="all">{{.locale.Tr "packages.filter.type.all"}}</option>
|
|
{{range $type := .AvailableTypes}}
|
|
<option{{if eq $.PackageType $type}} selected="selected"{{end}} value="{{$type}}">{{$type.Name}}</option>
|
|
{{end}}
|
|
</select>
|
|
<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
|
|
</div>
|
|
</form>
|
|
<div>
|
|
{{range .PackageDescriptors}}
|
|
<div class="flex-list">
|
|
<div class="flex-item">
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
<a href="{{.FullWebLink}}">{{.Package.Name}}</a>
|
|
<span class="ui label">{{svg .Package.Type.SVGName 16}} {{.Package.Type.Name}}</span>
|
|
</div>
|
|
<div class="flex-item-body">
|
|
{{$timeStr := TimeSinceUnix .Version.CreatedUnix $.locale}}
|
|
{{$hasRepositoryAccess := false}}
|
|
{{if .Repository}}
|
|
{{$hasRepositoryAccess = index $.RepositoryAccessMap .Repository.ID}}
|
|
{{end}}
|
|
{{if $hasRepositoryAccess}}
|
|
{{$.locale.Tr "packages.published_by_in" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) .Repository.Link (.Repository.FullName | Escape) | Safe}}
|
|
{{else}}
|
|
{{$.locale.Tr "packages.published_by" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
{{if not .HasPackages}}
|
|
<div class="empty center">
|
|
{{svg "octicon-package" 48}}
|
|
<h2>{{.locale.Tr "packages.empty"}}</h2>
|
|
{{if and .Repository .CanWritePackages}}
|
|
{{$packagesUrl := URLJoin .Owner.HomeLink "-" "packages"}}
|
|
<p>{{.locale.Tr "packages.empty.repo" $packagesUrl | Safe}}</p>
|
|
{{end}}
|
|
<p>{{.locale.Tr "packages.empty.documentation" "https://docs.gitea.com/usage/packages/overview/" | Safe}}</p>
|
|
</div>
|
|
{{else}}
|
|
<p class="gt-py-4">{{.locale.Tr "packages.filter.no_result"}}</p>
|
|
{{end}}
|
|
{{end}}
|
|
{{template "base/paginate" .}}
|
|
</div>
|