blob: 12cdf1ec6000304f3893e1c575b3c950f0b463d8 [file] [log] [blame]
Suraj Shetty3d00e252021-01-15 14:48:28 +05301<div class="gray-container text-center">
2 <div>
3 {% for person in birthday_persons %}
Suraj Shetty2e67a412021-01-20 10:12:01 +05304 {% if person.image %}
5 <img
6 class="avatar-frame standard-image"
7 src="{{ person.image }}"
Suraj Shetty17ed3fc2021-01-21 15:33:36 +05308 style="{{ css_style or '' }}"
Suraj Shetty2e67a412021-01-20 10:12:01 +05309 title="{{ person.name }}">
Suraj Shetty3d00e252021-01-15 14:48:28 +053010 </span>
Suraj Shetty2e67a412021-01-20 10:12:01 +053011 {% else %}
12 <span
13 class="avatar-frame standard-image"
Suraj Shetty17ed3fc2021-01-21 15:33:36 +053014 style="{{ css_style or '' }}"
Suraj Shetty2e67a412021-01-20 10:12:01 +053015 title="{{ person.name }}">
Suraj Shetty8670dda2021-01-21 16:47:04 +053016 {{ frappe.utils.get_abbr(person.name) }}
Suraj Shetty2e67a412021-01-20 10:12:01 +053017 </span>
18 {% endif %}
Suraj Shetty3d00e252021-01-15 14:48:28 +053019 {% endfor %}
20 </div>
21 <div style="margin-top: 15px">
22 <span>{{ reminder_text }}</span>
23 <p class="text-muted">{{ message }}</p>
24 </div>
25</div>