{% extends "base.html" %} {% block content %} {% set radio_default = settings.radio_stations['wow'] %}
{% for rs in radio_stations %}
{{ rs.title }}
|
  • 0 listeners
  • 00:00 / 00:00
{% if logged_in %} {% if rs.id == radio_default.id %}
{% endif %}
{% endif %} {{ rs.description | safe }}
{% endfor %}
{% for rs in radio_stations %} {% endfor %}
{% include 'footer.html' %}
{% endblock %}