mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
461f925554
- Currently in the Cargo section of the packages setting menu two buttons are always shown, "Initalize index" and "Rebuild index", however only of these should be shown depending on the state of the index, if there's no index the "Initalize index" button should be shown and if there's an index the "Rebuild index" button should be shown. This patch does exactly that. - Resolves #2628
28 lines
1 KiB
Go HTML Template
28 lines
1 KiB
Go HTML Template
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "packages.owner.settings.cargo.title"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
{{if .CargoIndexExists}}
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.owner.settings.cargo.rebuild.description"}}</label>
|
|
</div>
|
|
<form class="field" action="{{.Link}}/cargo/rebuild" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<button class="ui primary button">{{ctx.Locale.Tr "packages.owner.settings.cargo.rebuild"}}</button>
|
|
</form>
|
|
{{else}}
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.owner.settings.cargo.initialize.description"}}</label>
|
|
</div>
|
|
<form class="field" action="{{.Link}}/cargo/initialize" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<button class="ui primary button">{{ctx.Locale.Tr "packages.owner.settings.cargo.initialize"}}</button>
|
|
</form>
|
|
{{end}}
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.registry.documentation" "Cargo" "https://forgejo.org/docs/latest/user/packages/cargo/"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|