Horari i lloc
De {{ session.start_time.strftime("%H:%M") }}
a {{ session.end_time.strftime("%H:%M") }}
{% if session.venue.name %}
a
{% if session.venue.url %}
{{ session.venue.name }}
{% else %}
{{ session.venue.name }}
{% endif %}
{% endif %}
{% set notes = session.notes if session.notes else "" %}
{% include "fragments/sessio/notes.html" %}
{% endif %}
{% if logged_in or (session.slowjam and session.slowjam.sets) %}
{% set playlist_id = session.slowjam.id %}
{% set playlist = session.slowjam %}
{% include "fragments/llista/playlist.html" %}
{% endif %}
{% if logged_in or (session.setlist and session.setlist.sets) %}
{% set playlist_id = session.setlist.id %}
{% set playlist = session.setlist %}
{% include "fragments/llista/playlist.html" %}