{% extends "base.html" %} {% block title %}Tasks — DUYS Boost{% endblock %} {% block page_title %}Complete Tasks{% endblock %} {% block content %}
Available
{{ available|length }}
Tasks to complete
Completed
{{ my_tasks|length }}
Your submissions
Balance
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(current_user.balance) }}
Current wallet
Available Tasks
{% if available %}
{% for ad in available %}
{{ ad.platform }}
{{ ad.title }}
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(ad.reward_per_task) }}
{{ ad.task_type }} {{ ad.followers_gained }}/{{ ad.followers_target }} done {% if ad.followers_target %} · {{ ad.followers_target - ad.followers_gained }} left {% endif %}
Open {{ ad.platform }} Page ↗
{% endfor %}
{% else %}
All tasks completed!
Check back soon for new tasks.
{% endif %}
My Submission History
{% if my_tasks %}
{% for t in my_tasks %} {% endfor %}
CampaignProof LinkRewardStatusDate
{{ t.ad_title }} View Proof ↗ {{ CURRENCY_SYMBOL }}{{ '%.2f'|format(t.reward) }} {{ t.status }} {{ t.submitted_at[:10] }}
{% else %}
📋
No submissions yet. Complete a task above to get started!
{% endif %}
{% endblock %} {% block modals %} {% endblock %}