pyproforma
{% set in_compare = nav_scenarios is defined and current_scenario is none %}
{% if nav_scenarios %}
Scenario: {% if current_scenario %}{{ current_scenario }}{% else %}All (Compare){% endif %}
{% for label in nav_scenarios %}
{{ label }}
{% endfor %}
All (Compare)
{% endif %} {% if in_compare %}
Overview
{% endif %}
Line Items
{% if nav_has_inputs %}
Inputs
{% endif %} {% if nav_tags %}
Tags
{% for tag in nav_tags %}
{{ tag }}
{% endfor %}
{% endif %} {% if nav_views %}
Views
{% for idx, label in nav_views %}
{{ label }}
{% endfor %}
{% endif %} {% if nav_charts %}
Charts
{% for idx, label in nav_charts %}
{{ label }}
{% endfor %}
{% endif %} {% if nav_tables or not in_compare %}
Tables
{% if nav_tables %} {% for idx, label in nav_tables %}
{{ label }}
{% endfor %} {% else %}
No tables configured
{% endif %}
{% endif %}
{{ model.__class__.__name__ }}
{% for category, msg in get_flashed_messages(with_categories=True) %}
{{ msg }}
{% endfor %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}