Files
Aerbim/templates/blocks/dynamic/b_sections_buttons.html
2023-11-26 20:19:59 +03:00

10 lines
494 B
HTML

{% load static %}
<div class="container_sections_buttons">
<div class="cut-width container_content_sections_buttons">
{% for section in sections %}
<a href="{% url 'section_page' section.url %}" target="_blank" class="section_btn {% if section == cur_section %}open{% else %}close{% endif %} standart_txt" data-url="{{ section.url }}">
<div class="txt_section standart_txt">{{ section.name }}</div>
</a>
{% endfor %}
</div>
</div>