{% extends 'layouts/dashboard.html' %} {% load static %} {% block title %}Delete Brand - {{ brand.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Delete Brand

Permanently remove brand from the system

⚠️ Permanent Deletion Warning

This action cannot be undone. All data associated with this brand will be permanently deleted.

Brand to be deleted:

{{ brand.name }}

{{ brand.description|default:"No description available" }}

Agency: {{ brand.agency.name }}
Industry: {{ brand.industry|default:"Not specified" }}
Category: {{ brand.category.name|default:"Not specified" }}
Website: {% if brand.website %} {{ brand.website }} {% else %} Not specified {% endif %}
Created: {{ brand.created_at|date:"M d, Y" }}
Status: {{ brand.get_status_display }}
Annual Budget: {% if brand.annual_budget %} ${{ brand.annual_budget|floatformat:0 }} {% else %} Not set {% endif %}
Total Campaigns: {{ brand.total_campaigns }}
{% if brand.logo %}
{% endif %}
Deletion Impact

Deleting this brand will also:

  • {{ brand.total_campaigns }} Campaign(s) will be deleted
  • All associated creatives and ad spots will be permanently removed
  • All analytics data and performance reports will be lost
  • User access permissions for this brand will be revoked
  • {% if brand.annual_budget %}
  • Annual budget allocation of ${{ brand.annual_budget|floatformat:0 }} will be released
  • {% endif %}
{% csrf_token %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}