summaryrefslogtreecommitdiff
path: root/contrib/show_order_details.en.must
blob: a4b23fb990ad25b2f070d1f17c92d5a1893abed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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/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>