{% extends "base.html" %} {% load django_bootstrap5 %} {% block title %}Edit Campaign: {{ campaign.title }}{% endblock %} {% block content %}

{{ campaign.title }}

Edit the AI-generated content below. Changes will be saved when you submit the form.
{% csrf_token %}

Basic Information

{% bootstrap_field form.title %} {% bootstrap_field form.template_type %}

Content

{% bootstrap_field form.headline %} {% bootstrap_field form.subheadline %} {% bootstrap_field form.value_proposition %} {% bootstrap_field form.benefits %} {% bootstrap_field form.cta_button_text %} {% bootstrap_field form.thank_you_message %}

Launch Configuration

{% bootstrap_field form.launch_date %}
{% bootstrap_field form.show_countdown %}
{% bootstrap_field form.show_social_proof %}

SEO Settings

{% bootstrap_field form.meta_title %} {% bootstrap_field form.meta_description %}
Campaign Stats
{{ campaign.page_views }}
Views
{{ campaign.conversion_count }}
Leads
{{ campaign.conversion_rate }}%
Conversion Rate

Status: {% if campaign.is_active %} Active {% else %} Inactive {% endif %}

Created:
{{ campaign.created_at|date:"M j, Y g:i A" }}

Last Updated:
{{ campaign.updated_at|date:"M j, Y g:i A" }}

{% if campaign.questionnaire_data.llm_model_name %}

AI Model Used:
{{ campaign.questionnaire_data.llm_model_name }}

{% endif %}
Tips
  • Keep headlines under 60 characters for best impact
  • Benefits should be specific and outcome-focused
  • Use action words in your CTA button
  • Preview your changes before publishing
{% endblock %}