mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-19 03:21:05 +00:00
- Add permission checks for Composer package source links - Add private/internal visibility labels for packages, similar to repository visibility labels <img width="969" height="571" alt="image" src="https://github.com/user-attachments/assets/8a8ec3a0-bfbd-4dd6-b45b-58eda5db1a2d" /> - Add a link to change package visibility <img width="1309" height="208" alt="image" src="https://github.com/user-attachments/assets/3fa82b23-4c63-4a5e-b3f0-d37a103231ee" /> - Update link package descriptions <img width="1308" height="265" alt="image" src="https://github.com/user-attachments/assets/2c80b50e-5ffe-4d96-aedd-aa15964c4e05" /> --------- Co-authored-by: Nicolas <bircni@icloud.com> Co-authored-by: silverwind <me@silverwind.io>
61 lines
2.2 KiB
Handlebars
61 lines
2.2 KiB
Handlebars
{{template "base/alert" .}}
|
|
{{if .HasPackages}}
|
|
<form class="ui form ignore-dirty">
|
|
<div class="ui small fluid action input">
|
|
{{template "shared/search/input" dict "Value" .Query "Placeholder" (ctx.Locale.Tr "search.package_kind")}}
|
|
<select class="ui small dropdown" name="type">
|
|
<option value="">{{ctx.Locale.Tr "packages.filter.type"}}</option>
|
|
<option value="all">{{ctx.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>
|
|
{{template "shared/search/button"}}
|
|
</div>
|
|
</form>
|
|
{{end}}
|
|
<div>
|
|
{{range .PackageDescriptors}}
|
|
<div class="flex-divided-list items-with-main">
|
|
<div class="item">
|
|
<div class="item-main">
|
|
<div class="item-title">
|
|
<a href="{{.VersionWebLink}}">{{.Package.Name}}</a>
|
|
<span class="label-list">
|
|
{{template "package/shared/visibility_badge" dict "Package" .Package "Owner" .Owner}}
|
|
<span class="ui label">{{svg .Package.Type.SVGName 16}} {{.Package.Type.Name}}</span>
|
|
</span>
|
|
</div>
|
|
<div class="item-body">
|
|
{{$timeStr := DateUtils.TimeSince .Version.CreatedUnix}}
|
|
{{$hasRepositoryAccess := false}}
|
|
{{if .Repository}}
|
|
{{$hasRepositoryAccess = index $.RepositoryAccessMap .Repository.ID}}
|
|
{{end}}
|
|
{{if $hasRepositoryAccess}}
|
|
{{ctx.Locale.Tr "packages.published_by_in" $timeStr .Creator.HomeLink .Creator.GetDisplayName .Repository.Link .Repository.FullName}}
|
|
{{else}}
|
|
{{ctx.Locale.Tr "packages.published_by" $timeStr .Creator.HomeLink .Creator.GetDisplayName}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
{{if not .HasPackages}}
|
|
<div class="empty-placeholder">
|
|
{{svg "octicon-package" 48}}
|
|
<h2>{{ctx.Locale.Tr "packages.empty"}}</h2>
|
|
{{if and .Repository .CanWritePackages}}
|
|
{{$packagesUrl := print .Owner.HomeLink "/-/packages"}}
|
|
<p>{{ctx.Locale.Tr "packages.empty.repo" $packagesUrl}}</p>
|
|
{{end}}
|
|
<p>{{ctx.Locale.Tr "packages.empty.documentation" "https://docs.gitea.com/usage/packages/overview/"}}</p>
|
|
</div>
|
|
{{else}}
|
|
<p class="tw-py-4">{{ctx.Locale.Tr "packages.filter.no_result"}}</p>
|
|
{{end}}
|
|
{{end}}
|
|
{{template "base/paginate" .}}
|
|
</div>
|