mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 20:38:52 +00:00
21 lines
358 B
HTML
21 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 %}
|