Files
arif_grafin/pma/templates/console/query_action.twig
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

13 lines
378 B
Twig

<div class="{{ parent_div_classes }}">
{% for content in content_array %}
{% if content is defined %}
<span class="{{ content[0] }}">
{{ content[1] }}
{% if content['extraSpan'] is defined %}
: <span>{{ content['extraSpan'] }}</span>
{% endif %}
</span>
{% endif %}
{% endfor %}
</div>