tagsList.favorite.html.twig 415B

12345678910111213141516
  1. {% if tags|length %}
  2. <input type="hidden" id="get_elements_url" value="{{ path('favorite_get', {
  3. 'user_id': user_id,
  4. 'tags_ids_json' : ''
  5. }) }}" />
  6. <ul id="favorite_tags">
  7. {% for tag in tags %}
  8. <li>
  9. <a id="filtering_tag_{{ tag.id }}" href="#" class="button tag">
  10. {{ tag.name }}
  11. </a>
  12. </li>
  13. {% endfor %}
  14. </ul>
  15. <div class="clearboth" ></div>
  16. {% endif %}