diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-12-29 00:31:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 00:31:54 +0100 |
commit | 309e86a9bf305e807ead2854fa757c4d704dcfce (patch) | |
tree | 4239e0a07647f732e7810e443a9dfafa6743824f /templates/package/shared | |
parent | ca67c5a8a72f3d26bb0808ba7a63cd4875cd5229 (diff) | |
download | gitea-309e86a9bf305e807ead2854fa757c4d704dcfce.tar.gz gitea-309e86a9bf305e807ead2854fa757c4d704dcfce.zip |
Use dynamic package type list (#22263)
Replace the hardcoded list with the dynamic list.
Diffstat (limited to 'templates/package/shared')
-rw-r--r-- | templates/package/shared/list.tmpl | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/templates/package/shared/list.tmpl b/templates/package/shared/list.tmpl index 37c47cef33..ec2e88c854 100644 --- a/templates/package/shared/list.tmpl +++ b/templates/package/shared/list.tmpl @@ -6,18 +6,9 @@ <select class="ui dropdown" name="type"> <option value="">{{.locale.Tr "packages.filter.type"}}</option> <option value="all">{{.locale.Tr "packages.filter.type.all"}}</option> - <option value="composer" {{if eq .PackageType "composer"}}selected="selected"{{end}}>Composer</option> - <option value="conan" {{if eq .PackageType "conan"}}selected="selected"{{end}}>Conan</option> - <option value="container" {{if eq .PackageType "container"}}selected="selected"{{end}}>Container</option> - <option value="generic" {{if eq .PackageType "generic"}}selected="selected"{{end}}>Generic</option> - <option value="helm" {{if eq .PackageType "helm"}}selected="selected"{{end}}>Helm</option> - <option value="maven" {{if eq .PackageType "maven"}}selected="selected"{{end}}>Maven</option> - <option value="npm" {{if eq .PackageType "npm"}}selected="selected"{{end}}>npm</option> - <option value="nuget" {{if eq .PackageType "nuget"}}selected="selected"{{end}}>NuGet</option> - <option value="pub" {{if eq .PackageType "pub"}}selected="selected"{{end}}>Pub</option> - <option value="pypi" {{if eq .PackageType "pypi"}}selected="selected"{{end}}>PyPi</option> - <option value="rubygems" {{if eq .PackageType "rubygems"}}selected="selected"{{end}}>RubyGems</option> - <option value="vagrant" {{if eq .PackageType "vagrant"}}selected="selected"{{end}}>Vagrant</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> |