{% extends 'base.html' %} {% block title %}{{ round.name or 'Quiz #' + round.id|string }} - Quizzical Beats{% endblock %} {% block content %}

{{ round.name or 'Music Quiz #' + round.id|string }}

Back to Quizzes

{{ round.name or 'Quiz #' + round.id|string }}

Type: {{ round.round_type }}

Criteria: {{ round.round_criteria_used }}

Created: {{ round.created_at.strftime('%Y-%m-%d %H:%M:%S') }}

Quiz ID: {{ round.id }}
{{ songs|length }} Songs

Quiz Content

{% for song in songs %} {% endfor %}
# Cover Title Artist Year Genre Preview Actions
{{ loop.index }} {{ song.title }} {{ song.title }} {{ song.artist }} {{ song.year }} {{ song.genre }}

Generate MP3

Create an audio file with all songs to play during your quiz.

Generate PDF

Create a printable list of songs and answers for your reference.

Send via Email

Email this quiz to yourself for safekeeping or offline access.

Export Options

View formatted song list or export to your Dropbox account.

{% endblock %} {% block scripts %} {{ super() }} {% endblock %}