Suraj Shetty | 3d00e25 | 2021-01-15 14:48:28 +0530 | [diff] [blame] | 1 | <div class="gray-container text-center"> |
| 2 | <div> |
| 3 | {% for person in birthday_persons %} |
| 4 | <span class="avatar avatar-small " title="Mitali"> |
| 5 | <span class="avatar-frame standard-image" style="{% if person.image %}background-image: url({{person.image}}); {% endif %} margin-right: 5px;" |
| 6 | title={{person.name}}> |
| 7 | {% if not person.image %} {{ person.name[:1] }} {% endif %} |
| 8 | </span> |
| 9 | </span> |
| 10 | {% endfor %} |
| 11 | </div> |
| 12 | <div style="margin-top: 15px"> |
| 13 | <span>{{ reminder_text }}</span> |
| 14 | <p class="text-muted">{{ message }}</p> |
| 15 | </div> |
| 16 | </div> |