blob: 5f2f13dce54667d7cc1e03d5d2eb3fdad51f44ed [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 }}">
16 {{ person.name[:1] }}
17 </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>