{% extends "base.html" %} {% block content %} {% include "includes/sidenav.html" %}

Team Challenges

Complete challenges with your team to earn points and climb the leaderboard

{% if team_challenges %}
{% for challenge in team_challenges %}

{{ challenge.title }}

{{ challenge.points }} points {% if challenge.progress >= 100 %} Completed {% endif %}
{{ challenge.progress|floatformat:0 }}%

{{ challenge.description }}

{% if user.userprofile.team %}
{{ user.userprofile.team.name }}
{% if challenge.progress < 100 %} {% endif %}
{% else %}

Join a team to participate in this challenge!

{% endif %}
{% endfor %}
{% else %}

No Challenges Available

There are no team challenges available at the moment. Check back later!

{% endif %}
{% endblock content %}