fix: avoid Jinja dict method collisions in admin templates

This commit is contained in:
Anton
2026-04-29 12:11:16 +03:00
parent 5eaad38076
commit cdfbb26875
8 changed files with 13 additions and 11 deletions

View File

@@ -162,9 +162,9 @@
<p class="employee-section__text">{{ paragraph }}</p>
{% endfor %}
{% endif %}
{% if section.items %}
{% if section.list_items %}
<ul class="employee-card__list">
{% for item in section.items %}
{% for item in section.list_items %}
<li class="employee-card__list-item">{{ item }}</li>
{% endfor %}
</ul>