Fixes: None; Extra: Refactor imports in `signals.py` and `emailing.py`; Add formatting and responsive styles for email template.
122 lines
3.4 KiB
HTML
122 lines
3.4 KiB
HTML
{% load tz static i18n filters conditions %}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% blocktrans %}promocode granted{% endblocktrans %}</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body, table, td, a {
|
|
text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
table {
|
|
|
|
}
|
|
|
|
body {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
width: 100% !important;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.content-cell {
|
|
border: 3px solid #000000;
|
|
padding: 20px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.header {
|
|
background-color: #000000;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.header img {
|
|
width: 120px;
|
|
height: auto;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #000000;
|
|
padding: 10px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #888;
|
|
}
|
|
|
|
.order-table {
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.order-table th, .order-table td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
}
|
|
|
|
.order-table th {
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.email-container {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
</style>
|
|
<link rel="icon" href="{% static 'favicon.png' %}" sizes="192x192">
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<table class="email-container">
|
|
<tr>
|
|
<td class="header">
|
|
<img src="{% static 'logo.png' %}"
|
|
alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="content-cell">
|
|
<h2>{% blocktrans %}promocode granted{% endblocktrans %}</h2>
|
|
<p>{% blocktrans %}hello {{ user_first_name }},{% endblocktrans %}</p>
|
|
<p>{% blocktrans %}Thank you for staying with us! We have granted you with a promocode
|
|
for {% endblocktrans %}{% if promocode.discount_type == "amount" %}
|
|
{{ promocode.discount_amount }}{{ currency }}{% else %}{{ promocode.discount_percent }}
|
|
%{% endif %}</p>
|
|
|
|
<p>{% blocktrans %}if you have any questions, feel free to contact our support at
|
|
{{ contact_email }}.{% endblocktrans %}</p>
|
|
<p>{% blocktrans %}best regards,<br>the {{ project_name }} team{% endblocktrans %}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="footer">
|
|
© {% now "Y" %} {{ project_name }}.
|
|
{% blocktrans %}all rights reserved{% endblocktrans %}.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|