{% extends "base.html" %} {% block title %}Estimation {{ estimation.public_id }} of your ✈ travel footprint{% endblock %} {% block hero %}
{% if estimation.has_failed() %}

{{ content.estimation.failure.hero.title | safe }}

{{ content.estimation.failure.hero.description | markdown | safe }}

{% else %}

{{ content.estimation.hero.title | safe }}

{{ content.estimation.hero.description | markdown | safe }}

{% endif %}
{% endblock %} {% block body %}

{{ estimation.public_id }} ({{ estimation.status.name }})

{% if estimation.errors or estimation.warnings %}
{% if estimation.warnings %}

Warnings

{{ estimation.warnings }}
            
{% endif %} {% if estimation.errors %}

Errors

{{ estimation.errors }}
            
{% endif %}
{% endif %} {% if not estimation.has_failed() %}
{{ estimation.output_yaml }}
        
{% endif %} {% endblock %}