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.
51 lines
2.2 KiB
51 lines
2.2 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>
|
|
{% if order.comment %}
|
|
Комментарий: {{ order.comment }}
|
|
{% endif %}
|
|
<p>С уважением, Администрация сайта {{ site.name }}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{% endblock email_body %}
|
|
|