{% extends "layouts/base.html" %} {% load static %} {% block title %} TV Channel: Jingles {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if jingles %} {% for jingle in jingles %}

{{ jingle.name }}

Status: {% if jingle.is_active %}Active{% else %}Inactive{% endif %}

{% endfor%} {% else %}
No jingles found.
{% endif %}
{% endblock content %}