summaryrefslogtreecommitdiff
path: root/contrib/show_order_details.en.must
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.must
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.must')
-rw-r--r--contrib/show_order_details.en.must63
1 files changed, 0 insertions, 63 deletions
diff --git a/contrib/show_order_details.en.must b/contrib/show_order_details.en.must
deleted file mode 100644
index 6a9cbd2e..00000000
--- a/contrib/show_order_details.en.must
+++ /dev/null
@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<!--
- This file is part of GNU TALER.
- Copyright (C) 2014-2020 Taler Systems SA
-
- TALER is free software; you can redistribute it and/or modify it under the
- terms of the GNU Lesser General Public License as published by the Free Software
- Foundation; either version 2.1, or (at your option) any later version.
-
- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with
- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--->
-
-<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>
- <link rel="stylesheet"
- href="{{static_url}}pure-min.css"
- integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ"
- crossorigin="anonymous">
- <style>
-.content {
- overflow-x: auto;
- padding-left: 15%;
- padding-right: 15%;
-}
-#main a:link, #main a:visited, #main a:hover, #main a:active {
- color: black;
-}
- </style>
-</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>
-
-</body>
-</html>