mirror of
https://codeberg.org/forgejo/forgejo
synced 2025-10-19 00:50:48 +02:00
Follow up of forgejo/forgejo#8859 Move the following modals to native dialogs: - Admin notice. - Edit label. - New label. - Update email in admin's email list. Each has a E2E test to screenshot the modal and test functionality. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/9636 Reviewed-by: 0ko <0ko@noreply.codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
28 lines
1.1 KiB
Go HTML Template
28 lines
1.1 KiB
Go HTML Template
{{/*
|
|
Two buttons (negative, positive):
|
|
* ModalButtonTypes: "yes" (default) or "confirm"
|
|
* ModalButtonCancelText
|
|
* ModalButtonOkText
|
|
|
|
Single danger button (GitHub-like):
|
|
* ModalButtonDangerText "This action will destroy your data"
|
|
|
|
The ".ok.button" and ".cancel.button" selectors are also used by Fomantic Modal internally
|
|
*/}}
|
|
<div class="actions">
|
|
{{if .ModalButtonDangerText}}
|
|
<button class="ui danger red ok button">{{.ModalButtonDangerText}}</button>
|
|
{{else}}
|
|
{{$textNegitive := ctx.Locale.Tr "modal.no"}}
|
|
{{$textPositive := ctx.Locale.Tr "modal.yes"}}
|
|
{{if eq .ModalButtonTypes "confirm"}}
|
|
{{$textNegitive = ctx.Locale.Tr "modal.cancel"}}
|
|
{{$textPositive = ctx.Locale.Tr "modal.confirm"}}
|
|
{{end}}
|
|
{{if .ModalButtonCancelText}}{{$textNegitive = .ModalButtonCancelText}}{{end}}
|
|
{{if .ModalButtonOkText}}{{$textPositive = .ModalButtonOkText}}{{end}}
|
|
|
|
<button type="button" class="ui cancel button">{{svg "octicon-x"}} {{$textNegitive}}</button>
|
|
<button class="ui primary ok button">{{svg "octicon-check"}} {{$textPositive}}</button>
|
|
{{end}}
|
|
</div>
|