Further refactored to base_email_datacenterlight.html

This commit is contained in:
PCoder 2017-09-02 14:17:08 +05:30
parent 75611deadd
commit cf83a67d51
2 changed files with 9 additions and 1 deletions

View file

@ -163,7 +163,9 @@
style="border-collapse: collapse !important; font-family: 'Lato', 'sans-serif' !important;">
<tr style="font-family: 'Lato', 'sans-serif' !important;">
<td style="border-collapse: collapse; font-family: 'Lato', 'sans-serif' !important; font-size: 14px; font-weight: 600; color: #7293de; padding: 25px 5px 0px;text-align: left; line-height: 21px;;"
align="left">{% trans 'Your Data Center Light Team' %}
align="left">
{% block email_tail %}
{% endblock %}
</td>
</tr>
</table>

View file

@ -0,0 +1,6 @@
{% extends "datacenterlight/emails/base_email.html" %}
{% load static from staticfiles %}
{% load i18n %}
{% block email_tail %}
{% trans 'Your Data Center Light Team' %}
{% endblock %}