user.html.twig 768B

123456789101112131415161718192021222324252627282930
  1. {% extends "MuzichHomeBundle::layout.html.twig" %}
  2. {% block title %}{% endblock %}
  3. {% block mainbox_classes %}{% endblock %}
  4. {% block content %}
  5. {% if playlists|length %}
  6. <ul class="playlists">
  7. {% for playlist in playlists %}
  8. <li>
  9. <a class="autoplay_playlist" href="{{ path('playlist_datas_for_autoplay', { 'playlist_id' : playlist.id }) }}" >
  10. Lire
  11. </a>
  12. <a href="{{ path('playlist', { 'user_slug' : viewed_user.slug, 'playlist_id' : playlist.id }) }}">
  13. {{ playlist.name }}
  14. </a>
  15. {% include "MuzichCoreBundle:Tag:tag_cloud.html.twig" with {
  16. 'tags' : playlist.tags
  17. } %}
  18. </li>
  19. {% endfor %}
  20. </ul>
  21. {% endif %}
  22. {% endblock %}