2022-04-19 19:55:35 +03:00
{{ if eq .PackageDescriptor .Package .Type "helm" }}
2023-09-25 11:56:50 +03:00
<h4 class="ui top attached header"> {{ ctx .Locale .Tr "packages.installation" }} </h4>
2022-04-19 19:55:35 +03:00
<div class="ui attached segment">
<div class="ui form">
<div class="field">
2023-09-25 11:56:50 +03:00
<label> {{ svg "octicon-terminal" }} {{ ctx .Locale .Tr "packages.helm.registry" }} </label>
2023-04-27 08:40:00 +03:00
<div class="markup"><pre class="code-block"><code>helm repo add {{ AppDomain }} <gitea-origin-url data-url=" {{ AppSubUrl }} /api/packages/ {{ .PackageDescriptor .Owner .Name }} /helm"></gitea-origin-url>
2022-04-19 19:55:35 +03:00
helm repo update</code></pre></div>
</div>
<div class="field">
2023-09-25 11:56:50 +03:00
<label> {{ svg "octicon-terminal" }} {{ ctx .Locale .Tr "packages.helm.install" }} </label>
2023-04-27 08:40:00 +03:00
<div class="markup"><pre class="code-block"><code>helm install {{ .PackageDescriptor .Package .Name }} {{ AppDomain }} / {{ .PackageDescriptor .Package .Name }} </code></pre></div>
2022-04-19 19:55:35 +03:00
</div>
<div class="field">
2023-09-25 11:56:50 +03:00
<label> {{ ctx .Locale .Tr "packages.registry.documentation" "Helm" "https://docs.gitea.com/usage/packages/helm/" | Safe }} </label>
2022-04-19 19:55:35 +03:00
</div>
</div>
</div>
{{ if .PackageDescriptor .Metadata .Description }}
2023-09-25 11:56:50 +03:00
<h4 class="ui top attached header"> {{ ctx .Locale .Tr "packages.about" }} </h4>
2022-04-19 19:55:35 +03:00
<div class="ui attached segment">
{{ .PackageDescriptor .Metadata .Description }}
</div>
{{ end }}
{{ if .PackageDescriptor .Metadata .Dependencies }}
2023-09-25 11:56:50 +03:00
<h4 class="ui top attached header"> {{ ctx .Locale .Tr "packages.dependencies" }} </h4>
2022-04-19 19:55:35 +03:00
<div class="ui attached segment">
<table class="ui single line very basic table">
<thead>
<tr>
2023-09-25 11:56:50 +03:00
<th class="ten wide"> {{ ctx .Locale .Tr "packages.dependency.id" }} </th>
<th class="six wide"> {{ ctx .Locale .Tr "packages.dependency.version" }} </th>
2022-04-19 19:55:35 +03:00
</tr>
</thead>
<tbody>
{{ range .PackageDescriptor .Metadata .Dependencies }}
<tr>
<td> {{ .Name }} </td>
<td> {{ .Version }} </td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}
{{ if .PackageDescriptor .Metadata .Keywords }}
2023-09-25 11:56:50 +03:00
<h4 class="ui top attached header"> {{ ctx .Locale .Tr "packages.keywords" }} </h4>
2022-04-19 19:55:35 +03:00
<div class="ui attached segment">
{{ range .PackageDescriptor .Metadata .Keywords }}
{{ . }}
{{ end }}
</div>
{{ end }}
{{ end }}