pdlzbs/core/templates/calendar.html

15 lines
503 B
HTML

{% extends 'base.html' %} {% block title %}Kalendarz | pdlzbs{% endblock %} {%
load static tailwind_tags tablepipe %} {% block content %}
<div class="flex flex-col items-center gap-4">
{% for calendar in calendars %}
<article class="w-full pb-4">
{{ calendar.content | tablescroll | safe }}
</article>
{% if not forloop.last %}
<hr class="w-36 border-b border-stone-200" />
{% endif %} {% empty %}
<span class="py-4 text-xl">Brak kalendarzy</span>
{% endfor %}
</div>
{% endblock %}