Код: Выделить всё
{% if len(some_var)>1 %} ... {% endif %}
Код: Выделить всё
{% if some_var.__len__()>1 %} ... {% endif %}
Подробнее здесь: https://stackoverflow.com/questions/241 ... inja-flask
Код: Выделить всё
{% if len(some_var)>1 %} ... {% endif %}
Код: Выделить всё
{% if some_var.__len__()>1 %} ... {% endif %}