aboutsummaryrefslogtreecommitdiff
path: root/templates/inventory/fulfillment.html
blob: 5a4194b1a3f4dbc136b17ff00276495bcf3aa087 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<!-- 
This file is part of the Taler Codeless Merchant.
(C) 2018 GNUnet e.V.

The Taler Codeless Merchant is free software: you can redistribute it and/or
modify it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

The Taler Codeless Merchant 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 Affero General Public License
for more details.

You should have received a copy of the GNU Affero General Public License along
with the Taler Codeless Merchant.  If not, see <https://www.gnu.org/licenses/>.

@author Shivam Kohli
 -->
<html>
<head>
	<title></title>
	<style type="text/css">
		ol.progtrckr {
	    margin: 0;
	    padding: 0;
	    list-style-type none;
	}

	ol.progtrckr li {
	    display: inline-block;
	    text-align: center;
	    line-height: 3.5em;
	}

	ol.progtrckr[data-progtrckr-steps="2"] li { width: 49%; }
	ol.progtrckr[data-progtrckr-steps="3"] li { width: 33%; }
	ol.progtrckr[data-progtrckr-steps="4"] li { width: 24%; }
	ol.progtrckr[data-progtrckr-steps="5"] li { width: 19%; }
	ol.progtrckr[data-progtrckr-steps="6"] li { width: 16%; }
	ol.progtrckr[data-progtrckr-steps="7"] li { width: 14%; }
	ol.progtrckr[data-progtrckr-steps="8"] li { width: 12%; }
	ol.progtrckr[data-progtrckr-steps="9"] li { width: 11%; }

	ol.progtrckr li.progtrckr-done {
	    color: black;
	    border-bottom: 4px solid yellowgreen;
	}
	ol.progtrckr li.progtrckr-todo {
	    color: silver; 
	    border-bottom: 4px solid silver;
	}

	ol.progtrckr li:after {
	    content: "\00a0\00a0";
	}
	ol.progtrckr li:before {
	    position: relative;
	    bottom: -2.5em;
	    float: left;
	    left: 50%;
	    line-height: 1em;
	}
	ol.progtrckr li.progtrckr-done:before {
	    content: "\2713";
	    color: white;
	    background-color: yellowgreen;
	    height: 2.2em;
	    width: 2.2em;
	    line-height: 2.2em;
	    border: none;
	    border-radius: 2.2em;
	}
	ol.progtrckr li.progtrckr-todo:before {
	    content: "\039F";
	    color: silver;
	    background-color: white;
	    font-size: 2.2em;
	    bottom: -1.2em;
	}

	</style>
</head>
<body>
Thank you for purchasing {{  name }} of price {{  price }}. The Product was successfully placed on {{  delivery_date }} Your product will be delivered to you on the address {{  address }}
</br></br></br></br></br></br></br>
<h1>SHIPMENT TRACKING</h1>
<ol class="progtrckr" data-progtrckr-steps="5">
    <li class="progtrckr-done">Order Processing</li>

    {% if  pre_production == 'True' %}
	    <li class="progtrckr-done">Pre-Production</li>
    {% else %}
	    <li class="progtrckr-todo">Pre-Production</li>
	{% endif %}

	{% if  in_production == 'True' %}
	    <li class="progtrckr-done">In Production</li>
    {% else %}
	    <li class="progtrckr-todo">In Production</li>
	{% endif %}

	{% if  shipped == 'True' %}
	    <li class="progtrckr-done">Shipped</li>
    {% else %}
	    <li class="progtrckr-todo">Shipped</li>
	{% endif %}

	{% if  delivered == 'True' %}
	    <li class="progtrckr-done">Delivered</li>
    {% else %}
	    <li class="progtrckr-todo">Delivered</li>
	{% endif %}


</ol>
</br>
</br>
</br>
<a href="{{ website }}">Back to homepage</a>
</body>
</html>