{% extends "base.html" %} {% block title %}Dashboard — DUYS Boost{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
Wallet Balance
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(current_user.balance) }}
Available to spend or withdraw
Total Earned
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(total_earned) }}
From completed tasks
Total Spent
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(total_spent) }}
On ad campaigns
Active Ads
{{ ads|selectattr('status','eq','active')|list|length }}
Currently running campaigns
My Ads
View All
{% if ads %} {% for ad in ads %}
{{ ad.title }}
{{ ad.status }}
{{ ad.platform }} · {{ ad.task_type }} · {{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.reward_per_task) }}/task
{{ ad.followers_gained }}/{{ ad.followers_target }} followers {{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.budget_spent) }}/{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.budget) }}
{% endfor %} {% else %}
📢
No ads yet. Create one!
{% endif %}
Available Tasks
View All
{% if available_ads %} {% for ad in available_ads[:5] %}
{{ ad.title }}
{{ ad.platform }} · {{ ad.task_type }}
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.reward_per_task) }}
Do it
{% endfor %} {% else %}
No tasks available right now.
{% endif %}
⚡ Live Activity Feed
Live
Loading activity...
{% endblock %} {% block scripts %} {% endblock %}