42ac9ff2ab
- Change Gitea to Forgejo where necessary. - Point all documentation to Forgejo's documentation. - Resolves #992 (cherry picked from commitd0b78a6ede
) (cherry picked from commite2382f30ba
) (cherry picked from commitc41cf05a33
) (cherry picked from commit797e598ae7
) (cherry picked from commit970031a1c2
) (cherry picked from commit0c1180e2e1
) Conflicts: templates/package/content/alpine.tmpl templates/package/content/cargo.tmpl templates/package/content/chef.tmpl templates/package/content/composer.tmpl templates/package/content/conan.tmpl templates/package/content/conda.tmpl templates/package/content/container.tmpl templates/package/content/cran.tmpl templates/package/content/debian.tmpl templates/package/content/generic.tmpl templates/package/content/go.tmpl templates/package/content/helm.tmpl templates/package/content/maven.tmpl templates/package/content/npm.tmpl templates/package/content/nuget.tmpl templates/package/content/pub.tmpl templates/package/content/pypi.tmpl templates/package/content/rpm.tmpl templates/package/content/rubygems.tmpl templates/package/content/swift.tmpl templates/package/content/vagrant.tmpl https://codeberg.org/forgejo/forgejo/pulls/1351
53 lines
2.1 KiB
Go HTML Template
53 lines
2.1 KiB
Go HTML Template
{{template "base/alert" .}}
|
|
<form class="ui form ignore-dirty">
|
|
<div class="ui fluid action input">
|
|
{{template "shared/searchinput" dict "locale" .locale "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 class="{{if .PackageDescriptors}}flex-list{{end}} gt-pt-4">
|
|
{{range .PackageDescriptors}}
|
|
<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>
|
|
{{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://forgejo.org/docs/latest/user/packages/" | Safe}}</p>
|
|
</div>
|
|
{{else}}
|
|
<p>{{.locale.Tr "packages.filter.no_result"}}</p>
|
|
{{end}}
|
|
{{end}}
|
|
{{template "base/paginate" .}}
|
|
</div>
|