mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-07 17:36:40 +02:00
f9f9876f2c
1. `origin-url` was introduced in the past when there was no good
framework support to detect current host url
* It is not needed anymore
* Removing it makes the code clearer
2. Separate template helper functions for different templates (web
page/mail)
3. The "AppURL" info is removed from admin config page: it doesn't
really help.
* We already have various app url checks at many places
32 lines
1.6 KiB
Go HTML Template
32 lines
1.6 KiB
Go HTML Template
{{if eq .PackageDescriptor.Package.Type "pypi"}}
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.installation"}}</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.pypi.install"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>pip install --index-url {{ctx.AppFullLink}}/api/packages/{{.PackageDescriptor.Owner.Name}}/pypi/simple/ --extra-index-url https://pypi.org/simple {{.PackageDescriptor.Package.Name}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.registry.documentation" "PyPI" "https://docs.gitea.com/usage/packages/pypi/"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{if or .PackageDescriptor.Metadata.Description .PackageDescriptor.Metadata.LongDescription .PackageDescriptor.Metadata.Summary}}
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.about"}}</h4>
|
|
<div class="ui attached segment">
|
|
<p>{{if .PackageDescriptor.Metadata.Summary}}{{.PackageDescriptor.Metadata.Summary}}{{end}}</p>
|
|
{{if .PackageDescriptor.Metadata.LongDescription}}
|
|
{{ctx.RenderUtils.MarkdownToHtml .PackageDescriptor.Metadata.LongDescription}}
|
|
{{else if .PackageDescriptor.Metadata.Description}}
|
|
{{ctx.RenderUtils.MarkdownToHtml .PackageDescriptor.Metadata.Description}}
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
{{if .PackageDescriptor.Metadata.RequiresPython}}
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.requirements"}}</h4>
|
|
<div class="ui attached segment">
|
|
{{ctx.Locale.Tr "packages.pypi.requires"}}: {{.PackageDescriptor.Metadata.RequiresPython}}
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|