← Dashboard
{{ campaign.name }}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Upload New Ad
Ad Name
ZIP File *
Upload a ZIP file containing your HTML5 ad
Preview Access Control
🌐
Public
- Anyone with the link can view (no password)
🔒
Campaign Password
- Use campaign-level password {% if not campaign.password_protected %}
(No campaign password set)
{% endif %}
🔐
Custom Password
- Set unique password for this ad
This password will be required to view this specific ad
Upload Ad
Campaign Settings
Campaign Name
Description
{{ campaign.description or '' }}
Change Campaign Password
{% if campaign.password_protected %}
🔒 This campaign currently has password protection
{% endif %}
{% if campaign.password_protected %}
Remove password protection from this campaign
{% endif %}
Update Campaign
Delete Campaign
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') }}
🔒 Password
Delete
{% if ad.password_protected %}
Remove password (use campaign default)
{% endif %}
Save
{% endfor %}
{% else %}
No ads yet. Upload your first ad above!
{% endif %}