mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{if eq .PackageDescriptor.Package.Type "pypi"}}
 | |
| 	<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.pypi.install"}}</label>
 | |
| 				<div class="markup"><pre class="code-block"><code>pip install --extra-index-url {{AppUrl}}api/packages/{{.PackageDescriptor.Owner.Name}}/pypi/simple {{.PackageDescriptor.Package.Name}}</code></pre></div>
 | |
| 			</div>
 | |
| 			<div class="field">
 | |
| 				<label>{{.locale.Tr "packages.pypi.documentation" | Safe}}</label>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	{{if or .PackageDescriptor.Metadata.Description .PackageDescriptor.Metadata.LongDescription .PackageDescriptor.Metadata.Summary}}
 | |
| 		<h4 class="ui top attached header">{{.locale.Tr "packages.about"}}</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			<p>{{if .PackageDescriptor.Metadata.Summary}}{{.PackageDescriptor.Metadata.Summary}}{{end}}</p>
 | |
| 			{{if .PackageDescriptor.Metadata.LongDescription}}
 | |
| 				{{RenderMarkdownToHtml .PackageDescriptor.Metadata.LongDescription}}
 | |
| 			{{else if .PackageDescriptor.Metadata.Description}}
 | |
| 				{{RenderMarkdownToHtml .PackageDescriptor.Metadata.Description}}
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	{{end}}
 | |
| 	{{if .PackageDescriptor.Metadata.RequiresPython}}
 | |
| 		<h4 class="ui top attached header">{{.locale.Tr "packages.requirements"}}</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			{{.locale.Tr "packages.pypi.requires"}}: {{.PackageDescriptor.Metadata.RequiresPython}}
 | |
| 		</div>
 | |
| 	{{end}}
 | |
| {{end}}
 |