seitime-frappe/frappe/templates/emails/email_footer.html
Faris Ansari f3f21554b2 Email footer refactor (#3807)
* Email footer refactor

* styling fixes

* Unsubscribe message

* fix test
2017-07-31 10:53:15 +05:30

29 lines
No EOL
627 B
HTML

<div class="email-footer-container text-muted">
<!-- email_account_footer -->
{% if email_account_footer %}
<div class="email-account-footer">
{{ email_account_footer }}
</div>
{% endif %}
<!-- company_address -->
{% if company_address %}
<div class="company-address">
{% for line in company_address.splitlines(True) %}
<div>{{ line }}</div>
{% endfor %}
</div>
{% endif %}
<!--unsubscribe link here-->
<!-- default_mail_footer -->
{% if default_mail_footer %}
<div class="default-mail-footer">
{% for line in default_mail_footer %}
<div>{{ line }}</div>
{% endfor %}
</div>
{% endif %}
</div>