20 lines
451 B
HTML
20 lines
451 B
HTML
{% extends 'administration.html' %}
|
|
<!---->
|
|
{% block title %}Zarząd - Regulaminy | pdlzbs{% endblock %}
|
|
<!---->
|
|
{% load static tailwind_tags %} {% block adm_content %}
|
|
<h2>Regulaminy</h2>
|
|
{% if regulaminy %}
|
|
<ul>
|
|
{% for file in regulaminy %}
|
|
<li>
|
|
<a href="{{ file.attachment.url }}" target="_blank">
|
|
<h3 class="my-0">{{ file }}</h3>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<h4>Brak regulaminów</h4>
|
|
{% endif %} {% endblock %}
|