{% extends "layouts/base.html" %} {% load static %} {% block title %}Delete Brand - {{ brand.name }}{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% if brand.logo %} {% else %}
{% endif %}
{{ brand.name }}
{% if brand.agency %}
{{ brand.agency.name }}
{% endif %} {% if brand.description %}

{{ brand.description|truncatechars:150 }}

{% endif %}
⚠️ Delete Confirmation Required
You are about to permanently delete the brand "{{ brand.name }}". This action cannot be undone and will result in the permanent loss of all associated data.
What will be deleted:
  • Brand Information: All brand details, logo, and metadata
  • Associated Advertisers: Any advertisers linked to this brand
  • Campaigns: All campaigns associated with this brand
  • Adspots: All adspots and advertising content
  • Analytics Data: Performance metrics and historical data
  • User Permissions: Access rights and user associations
{% csrf_token %}
Cancel Back to Brands

If you're unsure, consider deactivating the brand instead of deleting it

Deactivate Instead
{% endblock content %} {% block extra_js %} {% endblock extra_js %}