{% load i18n %}{% load get_efilter_conditions from creme_core_tags %}
{% blocktranslate %}Conditions of «{{efilter}}»{% endblocktranslate %}
{% get_efilter_conditions efilter=efilter user=user as vconds %}
{% if vconds|length > 1 %}
{% if efilter.use_or %}{% translate 'Any condition is met:' %}{% else %}{% translate 'All these conditions are met:' %}{% endif %}
{% for vcond in vconds %}- {{vcond}}
{% endfor %}
{% else %}
{{vconds.0}}
{% endif %}