{% extends 'base.html' %} {% block content %}

🏖 Holiday Manager

{% for hol in holidays %} {% endfor %}
DateNameLocationType
{{ hol.date }} {{ hol.name }} {{ hol.location }} {{ 'RH' if hol.is_restricted else 'Public' }}
{% endblock %}