You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.9 KiB
42 lines
1.9 KiB
{% extends 'email_base.html' %}
|
|
{% block title %}
|
|
Вам пришел заказ
|
|
{% endblock title %}
|
|
{% block email_body %}
|
|
<table border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<p>Пользователь <a href="mailto:{{ order.user.email }}">{{ order.user.profile.full_name|default_if_none:order.user.username }}</a> сделал вам заказ</p>
|
|
<p>Заказ № {{ order.order_code }} </p>
|
|
<table border="0" cellpadding="0" cellspacing="0" class="btn btn-primary">
|
|
<tbody>
|
|
<tr>
|
|
<td align="left">
|
|
<table border="0" cellpadding="0" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Товар
|
|
</th>
|
|
<th>Колличество</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for buying in order.buyings_set %}
|
|
<tr>
|
|
<td><a href="{{ site.domain }}{% url 'products:product_details' %}">{{ buying.offer.product.name }}</a></td>
|
|
<td>{{ buying.amount }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p>С уважением, Администрация сайта {{ site.name }}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{% endblock email_body %}
|
|
|