{% extends "base.html" %} {% block title %}EcoCycle - Challenges{% endblock %} {% block head %} {% endblock %} {% block content %}

Challenges

Complete eco-challenges to earn rewards and track your environmental impact.

Invite Friends
{{ user.challenges_completed|default(0) }}
COMPLETED
{{ user.total_points|default(0) }}
POINTS
Filter:
{% if active_challenges %} {% for challenge in active_challenges %}
{{ challenge.name }}
{{ challenge.name }}

{{ challenge.description }}

Progress {{ challenge.progress|default(0) }}%
{{ challenge.points }} points
{% endfor %} {% else %}

No Active Challenges

You don't have any active challenges. Join some from the Available tab!

{% endif %}
Categories
  • All Categories {{ available_challenges|default([])|length }}
  • Waste Reduction 8
  • Energy Conservation 6
  • Sustainable Transport 5
  • Sustainable Food 4
  • Water Conservation 3
  • Community Action 7
Difficulty
Duration
Filter:
{% if available_challenges %} {% for challenge in available_challenges %}
{{ challenge.name }}
{{ challenge.name }}
{{ challenge.category|default('Waste')|title }} {% if challenge.tags is defined %} {% for tag in challenge.tags %} {{ tag }} {% endfor %} {% endif %}

{{ challenge.description }}

Difficulty
{% set difficulty = challenge.difficulty|default(1) %} {% for i in range(1, 6) %} {% if i <= difficulty %} {% else %} {% endif %} {% endfor %}
Reward {{ challenge.points }} points
{% endfor %} {% else %}

No Available Challenges

Check back soon for new challenges!

{% endif %}
Filter:
{% if completed_challenges %} {% for challenge in completed_challenges %}
{{ challenge.name }}
Completed
{{ challenge.name }}

{{ challenge.description }}

{{ challenge.points }} points earned {{ challenge.completed_date }}
{% endfor %} {% else %}

No Completed Challenges Yet

Complete challenges to see them here!

{% endif %}
Challenge Rewards
Tree Planter

Plant 5 trees

2/5 trees planted
Water Saver

Save 1000 liters of water

650/1000 liters saved
Energy Guru

Reduce energy by 100 kWh

80/100 kWh reduced
Recycling Pro

Recycle 50 items

Completed!
{% endblock %} {% block scripts %} {% endblock %}