mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-26 21:13:50 +01:00
40 lines
543 B
HTML
40 lines
543 B
HTML
{% if nonexistent_loop|length %}
|
|
nonexistent
|
|
{% endif %}
|
|
|
|
{% if nonexistent_loop|length == 0 %}
|
|
nonexistent = 0
|
|
{% endif %}
|
|
|
|
{% if ! nonexistent_loop|length %}
|
|
! nonexistent
|
|
{% endif %}
|
|
|
|
{% if empty_loop|length %}
|
|
empty
|
|
{% endif %}
|
|
|
|
{% if empty_loop|length == 0 %}
|
|
empty = 0
|
|
{% endif %}
|
|
|
|
{% if ! empty_loop|length %}
|
|
! empty
|
|
{% endif %}
|
|
|
|
{% if test_loop|length %}
|
|
loop
|
|
{% endif %}
|
|
|
|
{% if test_loop|length == 0 %}
|
|
loop = 0
|
|
{% endif %}
|
|
|
|
{% if ! test_loop|length %}
|
|
! loop
|
|
{% endif %}
|
|
|
|
{% for test_loop_inner in test_loop %}
|
|
in loop
|
|
{% endfor %}
|