blob: e38d27bf8bcb8c7e31517d6d13a3a7e17705edfd [file] [log] [blame]
Frappe PR Bot255b99e2021-08-24 20:19:22 +05301<div>
2 <span>{{ reminder_text }}</span>
3 <p class="text-muted">{{ message }}</p>
4</div>
5
6{% if advance_holiday_reminder %}
7 {% if holidays | len > 0 %}
8 <ol>
9 {% for holiday in holidays %}
10 <li>{{ frappe.format(holiday.holiday_date, 'Date') }} - {{ holiday.description }}</li>
11 {% endfor %}
12 </ol>
13 {% else %}
14 <p>You don't have no upcoming holidays this {{ frequency }}.</p>
15 {% endif %}
16{% endif %}