{% extends 'layouts/base.html' %} {% block content %}

Song Randomizer

A simple song randomizer.

WARNING: Very experimental. Implementation is not very smart yet.

{% if song %}
Branch Song
{{ song.branch.acronym }} {{ song.title }}
{% endif %} {% if idols %} {% for idol in idols %} {% endfor %}
Branch Idol
{{ idol.branch.acronym }} {{ idol.romanized_name}}
{% endif %} {% if song is None and idols is None %}
{% endif %} {% if song and idols is None%}
{% endif %}
{% endblock %}