{% extends "base.html" %} {% block title %}My Ads — DUYS Boost{% endblock %} {% block page_title %}Ad Campaigns{% endblock %} {% block content %}
My Campaigns
Balance: {{ CURRENCY_SYMBOL }}{{ '%.2f'|format(current_user.balance) }}
{% if ads %}
{% for ad in ads %}
{{ ad.platform }}
{{ ad.title }}
{{ ad.status }}
Task Type
{{ ad.task_type }}
Reward/Task
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.reward_per_task) }}
Followers
{{ ad.followers_gained }}/{{ ad.followers_target }} {% if ad.followers_target %} ({{ ad.followers_target - ad.followers_gained }} left) {% endif %}
Budget Used
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.budget_spent) }}/{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.budget) }}
View URL
{% endfor %}
{% else %}
📢
No campaigns yet
Create your first ad campaign to start gaining followers!
{% endif %} {% endblock %} {% block modals %} {% endblock %}