{% extends "campaign_monitor/base.html" %} {% load campaign_monitor_tags %} {% load perm_tags %} {% load styled_forms %} {% block title %}{% trans "Delete Campaign" %} - {{ campaign.name }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Delete a Campaign" %}

{{ campaign.name }}

{% if campaign.status == 'S' %}

{% trans "This campaign has already been sent. Deleting it will remove it from your account." %}

{% endif %} {% if campaign.status == 'C' %}

{% trans "This campaign is scheduled for" %} {{ campaign.scheduled_date }}. {% trans "Deleting it will remove it from your account and prevent it from sending." %}

{% endif %} {% if campaign.status == 'D' %}

{% trans "This campaign is a draft. Deleting it will remove it from your account and prevent it from sending." %}

{% endif %}
{% trans "Are you sure you want to permanently delete this campaign?" %}
{% csrf_token %}
« {% trans "Back to" %} {{ campaign.name }}
{% endblock %}