brotherton-erpnext/erpnext/templates/emails/birthday_reminder.html

25 lines
611 B
HTML
Raw Normal View History

2021-01-15 09:18:28 +00:00
<div class="gray-container text-center">
<div>
{% for person in birthday_persons %}
2021-01-20 04:42:01 +00:00
{% if person.image %}
<img
class="avatar-frame standard-image"
src="{{ person.image }}"
2021-01-21 10:03:36 +00:00
style="{{ css_style or '' }}"
2021-01-20 04:42:01 +00:00
title="{{ person.name }}">
2021-01-15 09:18:28 +00:00
</span>
2021-01-20 04:42:01 +00:00
{% else %}
<span
class="avatar-frame standard-image"
2021-01-21 10:03:36 +00:00
style="{{ css_style or '' }}"
2021-01-20 04:42:01 +00:00
title="{{ person.name }}">
2021-01-21 11:17:04 +00:00
{{ frappe.utils.get_abbr(person.name) }}
2021-01-20 04:42:01 +00:00
</span>
{% endif %}
2021-01-15 09:18:28 +00:00
{% endfor %}
</div>
<div style="margin-top: 15px">
<span>{{ reminder_text }}</span>
<p class="text-muted">{{ message }}</p>
</div>
</div>