mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 17:24:26 +00:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
15 lines
712 B
Handlebars
15 lines
712 B
Handlebars
{{if eq .PackageDescriptor.Package.Type "generic"}}
|
|
<h4 class="ui top attached header">{{.locale.Tr "packages.installation"}}</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.generic.download"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>curl {{AppUrl}}api/packages/{{.PackageDescriptor.Owner.Name}}/generic/{{.PackageDescriptor.Package.Name}}/{{.PackageDescriptor.Version.Version}}/{{(index .PackageDescriptor.Files 0).File.Name}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{.locale.Tr "packages.generic.documentation" | Safe}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|