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.
 
 
 
 
 
 

112 lines
3.3 KiB

{% extends "notification/email/_base.html" %}
{% load settings %}
{% block content %}
<p style="text-align: center;font-size: 2em;font-weight: bold;line-height: 1.09375;">Поздравляем с успешной
покупкой!</p>
<div style="margin-bottom:30px;text-align: center;">
<p>Вы получаете <strong>{{ gift_certificate.price }}</strong> лиликов на счет! <strong>1 LIL = 1 руб.</strong><br>
Накапливайте монеты и тратьте их на оплату школы и курсов.
</p>
</div>
<div style="margin-bottom: 30px;width: 100%;">
<div style="
margin: 0 auto;
width: 300px;
">
<div style="
width: 300px;
height: 300px;
background-color: #FEB9B9;
"></div>
<table style="
width: 100%;
font-size: 12px;
font-weight: bold;
">
<tbody>
<tr>
<td style="
letter-spacing: 2px;
text-transform: uppercase;
">Подарочный сертификат
</td>
<td style="
text-align: right;
">{{ gift_certificate.price }} р.
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="margin-bottom:10px;text-align: center;">Чтобы воспользоваться сертификатом, перейдите по ссылке</div>
<div style="margin-bottom: 30px;text-align: center;">
<a href="https://{% setting 'MAIN_HOST' %}{% url 'index' %}?gift-certificate={{ user_gift_certificate.code }}" style="
color: #FF9393;
font-weight: bold;
">
{% setting 'MAIN_HOST' %}{% url 'index' %}?gift-certificate={{ user_gift_certificate.code }}</a>
</div>
<div style="margin-bottom:10px;text-align: center;">
Или воспользуйтесь сертификатом, введя уникальный код на в разделе
вашего профиля на сайте <a href="https://lil.school" style="
color: #FF9393;
">lil.school</a>
</div>
<div style="
text-align: center;
font-size: 1.4em;
font-weight: bold;
margin-bottom: 10px;
">Ваш код
</div>
<div style="
text-align: center;
font-size: 1.4em;
font-weight: bold;
margin-bottom: 30px;
">
<div style="
display: inline-block;
border: 1px solid black;
padding: 5px 40px;
border-radius: 3px;
">{{ user_gift_certificate.code }}
</div>
</div>
<div style="
margin-bottom: 10px;
text-align: center;
">
Вы так же можете отправить это письмо, ссылку или код вашему другу, чтобы подарить ему этот сертификат.
</div>
<div style="
margin-bottom: 10px;
text-align: center;
font-size: 1.4em;
font-weight: bold;
">
Присоединяйтесь к нам!
</div>
<div style="
margin-bottom: 10px;
text-align: center;">
{% if config.SERVICE_TWITTER_URL %}
<a href="{{ config.SERVICE_TWITTER_URL }}">
<img src="cid:{{ twitter_icon }}" />
</a>
{% endif %}
{% if config.SERVICE_FB_URL %}
<a href="{{ config.SERVICE_FB_URL }}">
<img src="cid:{{ fb_icon }}" />
</a>
{% endif %}
{% if config.SERVICE_INSTAGRAM_URL %}
<a href="{{ config.SERVICE_INSTAGRAM_URL }}">
<img src="cid:{{ instagram_icon }}" />
</a>
{% endif %}
</div>
{% endblock content %}