27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
mixin responseModal(responseId="response-modal", understandBtn = t("Razumem"), understandBtnId = "understand-btn", understandMainText = t("Ali res želite izbrisati vnos? Dejanja ni mogoče razveljaviti."), secondaryText = '')
|
|
.modal.fade(
|
|
id=responseId
|
|
tabindex="-1"
|
|
aria-labelledby="modal-alert-label"
|
|
aria-hidden="true"
|
|
)
|
|
.modal-dialog.modal-lg
|
|
.modal-content
|
|
.modal-header
|
|
h5#modal-alert-label.modal-title.modal-title-blue #{ t('Obvestilo') }
|
|
button.btn-close(
|
|
type="button"
|
|
data-bs-dismiss="modal"
|
|
aria-label="Close"
|
|
)
|
|
.modal-body.d-flex.justify-content-between.align-items-center
|
|
.modal-alert-content
|
|
p#response-modal-text.normal-gray= understandMainText
|
|
p.normal-gray= secondaryText
|
|
.modal-footer.d-flex.justify-content-end.align-items-center
|
|
button.btn.btn-secondary(
|
|
id=understandBtnId
|
|
type="button"
|
|
data-bs-dismiss="modal"
|
|
)= understandBtn
|