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
2020-09-29 16:19:43 +02:00

13 lines
423 B
Text

extends layout
block content
div.container.center
h1=__("payment.payment")
if (state === "success")
h4=__("payment.successful")
else if (state === "cancel")
h4=__("payment.canceled")
else if (state === "error")
h4=__("payment.error")
if (state !== "success")
a.waves-effect.waves-teal.btn(href="/order/retry")=__("payment.retry")