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

Delete Agency

Permanently remove agency from the system

⚠️ Permanent Deletion Warning

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

Agency to be deleted:

{{ agency.name }}

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

Contact Person: {{ agency.contact_person|default:"Not specified" }}
Email: {{ agency.contact_email|default:"Not specified" }}
Phone: {{ agency.contact_phone|default:"Not specified" }}
Created: {{ agency.created_at|date:"M d, Y" }}
Status: {{ agency.get_status_display }}
Owner: {{ agency.owner.get_full_name|default:agency.owner.username }}
{% if agency.logo %}
{{ agency.name }} Logo
{% endif %}
Deletion Impact

Deleting this agency will also:

  • {{ agency.brands.count }} Brand(s) will be deleted
  • {{ agency.total_campaigns }} Campaign(s) will be deleted
  • All associated creatives, analytics data, and reports will be permanently removed
  • User access permissions for this agency will be revoked
{% csrf_token %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}