{% extends 'base_with_nav.html' %} {% load static %} {% block head %} {% if dark_mode %} {% endif %} {% endblock %} {% block main %}
{{ data.0.0 }}
{{ data.0.1 }}
points
{{ data.1.0 }}
{{ data.1.1 }}
points
{{ data.2.0 }}
{{ data.2.1 }}
points
{{ data.3.0 }}
{{ data.3.1 }}
points

Homecoming Scavenger Hunt 2022




{% for category, challenges in categories.values %}

{{ category.name }}

toggle

{{category.description}}

{% for challenge, status in challenges.items %} {% if status.0.unblocked %}

{{ 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.

{{ status.0.short_description }}

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

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

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

Solved!

{% else %}

{{ status.0.short_description }}

{% endif %}
{% if status.1 == 'available' %}
{% endif %}
{% else %}

{{ status.0.name }}

Points: {{ status.0.points }}

This challenge is currently unavailable.

{% endif %} {% endfor %}
{% endfor %} {% endblock %}