{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Upload New Ad

Upload a ZIP file containing your HTML5 ad

Campaign Settings

{% if campaign.password_protected %} 🔒 This campaign currently has password protection {% endif %}
{% if campaign.password_protected %}
{% endif %}

Ads in Campaign ({{ campaign.ads|length }})

{% if campaign.ads %}
{% for ad in campaign.ads %}

{{ ad.name }}

{% if ad.password_protected %} 🔐 Custom Password {% elif campaign.password_protected %} 🔒 Campaign Password {% else %} 🌐 Public {% endif %}
ID: {{ ad.unique_id }}
Preview Ad → Created: {{ ad.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endfor %}
{% else %}

No ads yet. Upload your first ad above!

{% endif %}