src/StartPlatz/Bundle/AlphaBundle/Resources/views/Job/_templateVars.filter.html.twig line 1

Open in your IDE?
  1. {% if (templateVars.criteria is defined and templateVars.criteria) %}
  2.     filter:
  3.     {% for filter, value in templateVars.criteria %}
  4.         {{ filter }} with {{ value }}
  5.     {% endfor %}
  6.     <a href="{{ path( currentPath, {'filter': 'none' } + templateVars) }}" >Set filter off</a>
  7. {% endif %}
  8.             {% if (templateVars.dimensions is defined and templateVars.dimensions) %}
  9.                 Sort:
  10.                 {% for dimension, value in templateVars.dimensions %}
  11.                     {{ dimension }} with {{ value }}
  12.                 {% endfor %}
  13.                 <a href="{{ path( currentPath, {'sort': 'none' } + templateVars) }}" >Set sort off</a>
  14.             {% endif %}
  15.             {% if (templateVars.tag is defined and templateVars.tag) %}
  16.                 Tag:
  17.                 <strong>{{ templateVars.tag }}</strong>
  18.                 <a href="{{ path( currentPath, {'tag': '' } + templateVars) }}" >Set tag off</a>
  19.                 // <a href="{{ path('meta_tags_home', {tag: templateVars.tag, domain: 'member' }) }}">Edit tag</a>
  20.             {% endif %}