Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/order.pug

14 lines
423 B
Text
Raw Normal View History

2020-09-11 10:58:12 +02:00
extends layout
block content
2020-09-29 16:17:47 +02:00
div.container.center
h1=__("payment.payment")
2020-09-11 10:58:12 +02:00
if (state === "success")
2020-09-29 16:17:47 +02:00
h4=__("payment.successful")
2020-09-11 10:58:12 +02:00
else if (state === "cancel")
2020-09-29 16:17:47 +02:00
h4=__("payment.canceled")
2020-09-11 10:58:12 +02:00
else if (state === "error")
2020-09-29 16:17:47 +02:00
h4=__("payment.error")
2020-09-11 10:58:12 +02:00
if (state !== "success")
2020-09-29 16:17:47 +02:00
a.waves-effect.waves-teal.btn(href="/order/retry")=__("payment.retry")