{% extends "_base.html" %} {% block page_title %}{{ metadata.name or 'Feature Detail' }} - {% endblock %} {% block css %} {% endblock %} {% block subheader %}

{{ metadata.name }}

{% endblock %} {% block content %}
{# 1. Feature Overview (Initially Open) #} {% include '_feature_overview.html' %} {# 2. Feature Metadata #} {% include '_feature_metadata.html' %} {# 3. Feature Stages #} {% for stage in stages %} {% set outer_loop = loop %} {% include '_feature_stage.html' %} {% endfor %}
{% endblock %} {% block js %} {% endblock %}