{% extends 'base_with_nav.html' %} {% load static %} {% block head %} {% endblock %} {% block main %}
{% for challenge, status in challenges_dict.items %}

{{ status.0.name }}

Points: {{ status.0.points }}

{% if status.0.exclusive %}

This challenge's points are only available to the first class to complete it.

{% elif status.1 == 'locked' %}

This challenge was exclusive and has already been completed by another class.

{% endif %}

{{ status.0.description }}

{% if status.1 == 'available' %}
{% endif %}
{% endfor %}
{% endblock %}