-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathorder_executed.eml
More file actions
46 lines (44 loc) · 1.49 KB
/
order_executed.eml
File metadata and controls
46 lines (44 loc) · 1.49 KB
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
{% extends "notification/base.eml" %}
{% block subject %}
{# We are putting |safe here because an e-mail's subject line shouldn't be
HTML encoded. #}
{% trans name=provider.printable_name|safe %}Order Confirmation from {{name}}{% endtrans %}
{% endblock %}
{% block html_content %}
<div>
<h3>{% trans name=profile.printable_name %}Order Confirmation for {{name}}{% endtrans %}</h3>
<div id="invoiced_items">
<table class="table table-striped">
<thead>
<tr>
<th class="amount-header">{% trans %}Amount{% endtrans %}</th>
<th class="description-header">{% trans %}Description{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for line in invoiced_items %}
<tr>
<td>{{line|dest_price|humanize_money}}</td>
<td>{{line|describe}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<hr class="horizontal-divide">
<div>
{% if originated_by %}
<p>
{% trans profile_url=originated_by.location, name=originated_by.printable_name %}This order was initiated by <a href="{{profile_url}}">{{name}}</a>.{% endtrans %}
</p>
{% endif %}
</div>
<div>
<p>
{% trans %}This order confirmation only notifies that you intend to pay for this product(s).{% endtrans %}
<span class="strong">{% trans %}You have not been charged.{% endtrans %}</span>
{% trans %}A receipt will follow only after a credit card payment has been successfully made.{% endtrans %}
</p>
</div>
</div>
{% endblock %}