{% extends "base_app.html" %} {% set active_page = 'dashboard' %} {% block title %}Dashboard — TheNicheQuiz{% endblock %} {% block body %}
📊
{{ campaign_count }}
Saved Campaigns
🎨
{{ image_count }}
Images Generated
📥
{{ export_count }}
CSV Exports
Start New Quiz View All Campaigns

Recent Campaigns

{% if recent_campaigns %} {% for c in recent_campaigns %} {% endfor %}
Name Niche Path Created
{{ c.name }} {% if c.industry %} {{ c.industry }} {% endif %} {% if c.micro_niche %} {{ c.micro_niche[:40] }}{% if c.micro_niche|length > 40 %}...{% endif %} {% endif %} {{ c.created_at.strftime('%b %d, %Y') if c.created_at else 'N/A' }} View
{% else %}
🚀
No campaigns yet
Take the quiz to generate your first batch of AI-powered campaigns.
Start the Quiz
{% endif %}
{% endblock %}