{% extends "layout.html" %} {% import "macros/_event.html" as misc %} {% block page_title %}Project stages{% endblock %} {% block body_class %}stages-page{% endblock %} {% block content %} {% if not current_event.lock_resources %}

Stages

💡 This page details the requirements of projects as they progress through stages of development.

{% endif %}
{% for step in steps %} {% if step.projects or not current_event.lock_resources %}
{% if step.index > 0 %}
{{ step.index }}
{% else %}
*
{% endif %} {% if step.index > 0 %}

{{ step.phase }}

{% endif %} {% if step.index > 0 and not current_event.lock_resources and step.description %}

{{ step.description }}

{% endif %} {% if not current_event.lock_resources and step.conditions %} {% endif %} {% if step.projects %}
{% for project in step.projects %} {{ misc.render_project_hexagon(project) }} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{{ current_event.name }}
{% endblock %}