blob: bbef6be67282754a0ae0b42f6f8d398ea15d4644 [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 %}
escixdafe99b2021-09-26 15:39:13 +100014 <p>You have no upcoming holidays this {{ frequency }}.</p>
Frappe PR Bot255b99e2021-08-24 20:19:22 +053015 {% endif %}
16{% endif %}