mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-04 08:08:12 +01:00
22 lines
358 B
HTML
22 lines
358 B
HTML
{% for test_loop_inner in test_loop %}
|
|
loop
|
|
{% else %}
|
|
noloop
|
|
{% endfor %}
|
|
|
|
{% if test_loop|length %}
|
|
loop
|
|
{% else %}
|
|
noloop
|
|
{% endif %}
|
|
|
|
{% if test_loop|length == 2 %}
|
|
loop
|
|
{% endif %}
|
|
|
|
{% for test_loop_inner in test_loop %}
|
|
{% for block_inner in block %}
|
|
loop#{{ test_loop_inner.S_ROW_COUNT }}-block#{{ block_inner.S_ROW_COUNT }}
|
|
{% endfor %}
|
|
{% endfor %}
|