23 lines
607 B
Plaintext
23 lines
607 B
Plaintext
extends layout
|
|
|
|
block content
|
|
.container.mt-5
|
|
.alert.alert-success
|
|
h2 Thank you for your purchase!
|
|
p Your payment was successful.
|
|
if session
|
|
h4 Payment Details
|
|
table.table
|
|
tr
|
|
th Session ID
|
|
td= session.id
|
|
tr
|
|
th Payment Status
|
|
td= session.payment_status
|
|
tr
|
|
th Amount Total
|
|
td $#{(session.amount_total / 100).toFixed(2)}
|
|
tr
|
|
th Payment Method
|
|
td= session.payment_method_types && session.payment_method_types[0]
|
|
a.btn.btn-primary.mt-4(href="/") Back to Products |