{% extends 'base.html' %} {% block title %}Your Song Library - Quizzical Beats{% endblock %} {% block head %} {% endblock %} {% block content %}

Your Song Library

Browse, search and manage all your imported songs to use in music quizzes.

{% if songs %}

Total songs in your collection

{{ songs|length }} / {{ songs|length }}

{% for song in songs %} {% endfor %}
ID Title Artist(s) Genre Year Times Used Preview Actions
{{ song.id }} {{ song.title }} {{ song.artist }} {% if song.genre %} {{ song.genre }} {% else %} Unknown {% endif %} {{ song.year }} {{ song.used_count }} {% if song.preview_url %} {% else %} No preview {% endif %}
Page 1 of 1

Library Stats

Total Songs

{{ songs|length }}

Unique Artists

{{ unique_artists|default('N/A') }}

Genres

{{ unique_genres|default('N/A') }}

Most Used Songs

{{ most_used|default('0') }}

Spotify Audio Features

Retrieve audio features (danceability, energy, tempo, etc.) for Spotify tracks in your library.

{% else %}

No songs found

Start by importing songs from Spotify or Deezer

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}