agenda/templates/holiday_list.html
Edward Betts 322b65237d Add holiday page
Page showing holidays in countries of interest, just in English for now.
2024-01-16 12:06:46 +00:00

19 lines
479 B
HTML

{% extends "base.html" %}
{% from "macros.html" import display_date %}
{% block content %}
<div class="container-fluid mt-2">
<h1>Holidays</h1>
<table class="table table-hover w-auto">
{% for item in items %}
{% set country = get_country(item.country) %}
<tr>
<td class="text-end">{{ display_date(item.date) }}</td>
<td>{{ country.flag }} {{ country.name }}</td>
<td>{{ item.name }}</td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}