{% extends "layouts/base.html" %} {% load static %} {% block title %}Delete Jingle - {{ jingle.name }}{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

Confirm Deletion

This action cannot be undone

Are you sure you want to delete this jingle?

Jingle Information
Name: {{ jingle.name }}
Channel: {{ jingle.channel.display_name|default:jingle.channel.name }}
Type: {{ jingle.get_jingle_type_display|default:jingle.jingle_type }}
Placement: {{ jingle.get_placement_display|default:jingle.placement }}
{% if jingle.duration %}
Duration: {{ jingle.duration }} seconds
{% endif %}
Status: {% if jingle.is_active %} Active {% else %} Inactive {% endif %}
Consequences of deletion:
  • The jingle file will be permanently removed from the system
  • Any playlists using this jingle will need to be updated
  • This action cannot be undone
  • {% if jingle.is_active %}
  • Warning: This is an active jingle currently in use
  • {% endif %}
{% csrf_token %}
Cancel
This confirmation step helps prevent accidental deletions
{% endblock content %} {% block extra_js %} {% endblock extra_js %}