summaryrefslogtreecommitdiff
path: root/contrib/show_order_details.en.mcpp
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-20 21:25:24 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-20 21:25:24 +0200
commit5335c44f98fb17d5349850219ddd3d3d6695caaa (patch)
treed9164dba7b3ac4cb1e1a8fc206eb8c5f90f2ebc0 /contrib/show_order_details.en.mcpp
parent5e5e4fbf006f120e15e9cd6b393c9d259398911d (diff)
downloadmerchant-5335c44f98fb17d5349850219ddd3d3d6695caaa.tar.gz
merchant-5335c44f98fb17d5349850219ddd3d3d6695caaa.tar.bz2
merchant-5335c44f98fb17d5349850219ddd3d3d6695caaa.zip
address #6995 in terms of enabling sharing across Mustach template files by using cpp during the build process
Diffstat (limited to 'contrib/show_order_details.en.mcpp')
-rw-r--r--contrib/show_order_details.en.mcpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/show_order_details.en.mcpp b/contrib/show_order_details.en.mcpp
new file mode 100644
index 00000000..f0984839
--- /dev/null
+++ b/contrib/show_order_details.en.mcpp
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+#include "copyright.html"
+<html>
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <noscript>
+ <meta http-equiv="refresh" content="1">
+ </noscript>
+ <title>Status of your order for {{order_summary}}</title>
+#include "css.html"
+</head>
+
+<body>
+<h1>Order details</h1>
+
+<div>
+This is the default status page for your order for <b>{{order_summary}}</b>.
+</div>
+
+
+<h2>Refund status</h2>
+<div>
+The merchant has granted you refunds on the purchase of <b>{{refund_amount}}</b>.
+</div>
+
+<h2>Full contract details</h2>
+
+<!-- FIXME #6459: expand the contract JSON in all its glory here -->
+<pre>
+ {{{ contract_terms!stringify }}}
+</pre>
+#include "footer.html"