{% if song_qs|length > 0 %}

On deck:
    {% for k,v in song_qs.items() %}
  1. {% if loop.index0 == (singer_idx-1) %}*{% endif %} {{ k }} {% if loop.index0 == (singer_idx-1) %}{% endif %}
      {% for song in v %}
    1. {{ song.arist }} - {{ song.title }} - {{ song.path }}
    2. {% endfor %}
  2. {% endfor %}

{% endif %}