<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<p>Здравствуйте, {{ order.person }}.</p>
<p><strong>Наш менеджер {{ manager.name }} свяжется с Вами в ближайшее время!</strong></p>
<p><ins>Информация о заказе:</ins></p>
<p><strong>Номер заказа: {{ order.id }}</strong></p>
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<th align="left" width="310">Название</th>
<th width="40"> </th>
<th align="left" width="80">Цена</th>
<th align="left" width="70">Кол-во</th>
<th align="left" width="80">Стоимость</th>
</tr>
<tr>
<td colspan="5">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------</td>
</tr>
{% for item in cart %}
<tr>
<td><a href="{{ SITE_DOMAIN }}{{ item.product.product.get_absolute_url }}">{{ item.product.product }} {{ item.product.name }}</a></td>
<td width="40"> </td>
<td valign="top">{{ item.unit_price }}</td>
<td valign="top">{{ item.quantity }} шт.</td>
<td valign="top">{{ item.total_price }} р.</td>
</tr>
{% endfor %}
<tr>
<td>ДОСТАВКА (По Москве - 300 рублей, за МКАД + 30рублей за 1 километр)</td>
<td width="40"> </td>
<td valign="top"> </td>
<td valign="top"> </td>
<td valign="top">{{ cart.delivery_price }} р.</td>
</tr>
<tr>
<td colspan="5">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------</td>
</tr>
<tr>
<td> </td>
<td width="40"> </td>
<td valign="top"> </td>
<td valign="top">ИТОГО</td>
<td valign="top">{{ cart.summary_with_delivery }} р.</td>
</tr>
<tr>
<td colspan="5">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------</td>
</tr>
</table>
<br />
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<th align="left" nowrap="nowrap" width="130">Способ доставки:</th><td align="left" nowrap="nowrap">{{ order.delivery }}</td>
</tr>
<tr>
<th align="left" nowrap="nowrap" width="130">Способ оплаты:</th><td align="left" nowrap="nowrap">{{ order.payment }}</td>
</tr>
{% if order.issue %}
<tr>
<th align="left" nowrap="nowrap" width="130">Пункт выдачи:</th><td align="left" nowrap="nowrap">{{ order.issue }}</td>
</tr>
{% endif %}
<tr>
<th align="left" nowrap="nowrap">Город:</th><td align="left" nowrap="nowrap">{{ order.city }}</td>
</tr>
<tr>
<th align="left" nowrap="nowrap">Адрес:</th><td align="left" nowrap="nowrap">{{ order.info }}</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<th align="left" nowrap="nowrap">Имя:</th><td align="left" nowrap="nowrap">{{ order.person }}</td>
</tr>
<tr>
<th align="left" nowrap="nowrap">Мобильный:</th><td align="left" nowrap="nowrap">{{ order.phone }}</td>
</tr>
<tr>
<th align="left" nowrap="nowrap">Email:</th><td align="left" nowrap="nowrap">{{ order.email }}</td>
</tr>
</table>
<br />
<p>Вы также можете связаться с менеджером по всем возникшим у Вас вопросам по номеру {{ settings.phone }} или электронной почте <a href="mailto:{{ manager.email }}">{{ manager.email }}</a></p>
<br />
<p>С уважением,
<br />
<a href="{{ SITE_DOMAIN }}" target="_blank" title="{{ SITE_NAME }}"><img src="{{ SITE_DOMAIN }}/static/images/logo.png" alt="{{ SITE_DOMAIN }}" border="0" title="{{ SITE_DOMAIN }}" /></a>
<br />
<a href="{{ SITE_DOMAIN }}" target="_blank" title="{{ SITE_NAME }}">{{ SITE_DOMAIN }}</a>
</body>
</html>