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

Delete Adbreak

You are about to permanently delete this adbreak. This action cannot be undone.

{{ adbreak.name }}
Channel {{ adbreak.channel.display_name|default:adbreak.channel.name }}
Time Slot {{ adbreak.start_time|time:"H:i" }} - {{ adbreak.end_time|time:"H:i" }}
Duration {{ adbreak.duration }} seconds
Type {{ adbreak.get_adbreak_type_display|default:adbreak.adbreak_type }}
Priority {{ adbreak.get_priority_display|default:adbreak.priority|default:'Medium' }}
{% if adbreak.max_ads %}
Max Ads {{ adbreak.max_ads }}
{% endif %}
Frequency {% if adbreak.repeats_daily %} Daily {% else %} One-time {% endif %}
Status {% if adbreak.is_active %} Active {% else %} Inactive {% endif %}
What will happen:
  • The adbreak "{{ adbreak.name }}" will be permanently removed
  • Any scheduled ads for this time slot will be unassigned
  • {% if adbreak.repeats_daily %}
  • Daily recurring schedule will be cancelled
  • {% endif %}
  • This action cannot be undone
  • You will need to recreate the adbreak if needed later
{% csrf_token %}
You can press Esc to cancel or Enter to confirm
{% endblock content %} {% block extra_js %} {% endblock extra_js %}