[GITEA] Tidy up archive modal
- Make it consistent with the other modals of the dangerous actions.
This commit is contained in:
parent
c8707f02ac
commit
576d7ec759
1 changed files with 11 additions and 8 deletions
|
@ -977,21 +977,24 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<p>
|
<div class="ui warning message">
|
||||||
{{if .Repository.IsArchived}}
|
{{if .Repository.IsArchived}}
|
||||||
{{.locale.Tr "repo.settings.unarchive.text"}}
|
{{.locale.Tr "repo.settings.unarchive.text"}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{.locale.Tr "repo.settings.archive.text"}}
|
{{.locale.Tr "repo.settings.archive.text"}}
|
||||||
{{end}}
|
{{end}}
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<form action="{{.Link}}" method="post">
|
<form action="{{.Link}}" method="post">
|
||||||
{{.CsrfTokenHtml}}
|
{{.CsrfTokenHtml}}
|
||||||
<input type="hidden" name="action" value="{{if .Repository.IsArchived}}unarchive{{else}}archive{{end}}">
|
<input type="hidden" name="action" value="{{if .Repository.IsArchived}}unarchive{{else}}archive{{end}}">
|
||||||
<input type="hidden" name="repo_id" value="{{.Repository.ID}}">
|
<input type="hidden" name="repo_id" value="{{.Repository.ID}}">
|
||||||
{{template "base/modal_actions_confirm" .}}
|
<div class="text right actions">
|
||||||
|
<button class="ui cancel button">{{.locale.Tr "settings.cancel"}}</button>
|
||||||
|
<button class="ui red button">{{.locale.Tr "repo.settings.archive.button"}}</button>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue