{% extends "missions/base.html" %} {% block content %}

Chapters

Missions

{% for object in object_list %}

{{object.item.name}}

{{object.item.description|safe}}
{% if object.item.image %} {{object.item.image_alt}} {% endif %}

Progress: {{ object.percent_progress }}%
Tier: {{ object.tier }}

{% csrf_token %}
{% if object.item.mission.triggers.all %}

Possible Rewards

{% for mt in object.item.mission.triggers.all %}
{{ mt.as_leaf_class.html }}
{% endfor %}
{% endif %}
{% empty %} You have no missions in this area unlocked. {% endfor %}
{% endblock content %}