33 lines
864 B
HTML
33 lines
864 B
HTML
{% extends 'base.html' %}
|
|
<!---->
|
|
{% block title %}Składki Członkowskie | pdlzbs{% endblock %}
|
|
<!---->
|
|
{% load static tailwind_tags wysiwyg %} {% block content %}
|
|
<!---->
|
|
|
|
{% if memberships %}
|
|
<ul class="flex justify-center gap-4">
|
|
{% for membership in memberships %}
|
|
<li>
|
|
<a
|
|
href="{% url 'membership' %}#{{ membership.year }}"
|
|
class="button py-2 active:ring-2 {% if forloop.counter0|divisibleby:2 %} sky color {% else %} green color {% endif %}"
|
|
>
|
|
{{ membership.year }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<div class="flex flex-col items-center gap-4">
|
|
{% for membership in memberships %}
|
|
<article class="w-full py-4 hidden target:block" id="{{ membership.year }}">
|
|
{% content membership %}
|
|
</article>
|
|
{% empty %}
|
|
<span class="py-4 text-xl">Brak dokumentów</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|