{% extends "base_app.html" %} {% set active_page = 'campaigns' %} {% block title %}My Campaigns — TheNicheQuiz{% endblock %} {% block body %}
{% if campaigns %}
{% for c in campaigns %}

{{ c.name }}

{% if c.industry %} {{ c.industry }} {% endif %} {% if c.sub_niche %} {{ c.sub_niche[:30] }} {% endif %}
{% if c.micro_niche %}
🎯 {{ c.micro_niche }}
{% endif %} {% if c.campaign_data %} {% set data = c.campaign_data if c.campaign_data is mapping else {} %} {% set camp_count = data.get('campaigns', [])|length if data.get('campaigns') else 0 %} {% if camp_count > 0 %}
{{ camp_count }} campaign{{ 's' if camp_count != 1 else '' }} saved
{% endif %} {% endif %}
{{ c.created_at.strftime('%b %d, %Y at %I:%M %p') if c.created_at else '' }}
View
{% endfor %}
{% else %}
📦
No saved campaigns
Generate campaigns with the quiz and save them here for later.
Start Generating
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}