{% load i18n creme_ctype creme_widgets %}{% load blockjsondata from creme_core_tags %}
{% translate 'Filter' context 'creme_core-noun' as label %}{% widget_icon name='filter' label=label size='listview-filter' %}{{label}}
{% with ctype=model|ctype_for_instance %} {% if selected != None %} {% widget_icon name='info' label=_('Information on the current filter') size='listview-filter-action' %} {% endif %} {% if show_buttons %} {% widget_icon name='add' label=_('Create a custom filter') size='listview-filter-action' %} {% if selected != None %} {% widget_icon name='clone' label=_('Clone this filter') size='listview-filter-action' %} {% endif %} {% if edition_allowed %} {% widget_icon name='edit' label=_('Edit this filter') size='listview-filter-action' %} {% elif edition_error %} {% widget_icon name='edit' label=edition_error size='listview-filter-action' %} {% endif %} {% if deletion_allowed %} {% widget_icon name='delete' label=_('Delete this custom filter') size='listview-filter-action' %} {% elif deletion_error %} {% widget_icon name='delete' label=deletion_error size='listview-filter-action' %} {% endif %} {% endif %} {% endwith %}
{% comment %} {% load i18n creme_ctype creme_widgets %}{% load blockjsondata from creme_core_tags %}
{% translate 'Filter' context 'creme_core-noun' as label %}{% widget_icon name='filter' label=label size='listview-filter' %}{{label}}
{% with efilter=entity_filters.selected %} {% if efilter_id %} {% widget_icon name='info' label=_('Information on the current filter') size='listview-filter-action' %} {% endif %} {% if show_buttons %}{% ctype_for_model model as ctype %} {% widget_icon name='add' label=_('Create a custom filter') size='listview-filter-action' %} {% widget_icon name='edit' label=_('Edit this filter') size='listview-filter-action' %} {% widget_icon name='delete' label=_('Delete this custom filter') size='listview-filter-action' %} {% endif %} {% endwith %}
{% endcomment %}