{% extends 'base.html' %} {% from "_helpers.html" import render_tags, render_delta %} {% block heading %} Predictions {% endblock %} {% block content %}

Not all that is said is true.

{% for category in predictions %}

{{ category }}

{% for prediction in predictions[category] %} {% endfor %}
Activity ETA Start Time End Time Duration
{{ prediction.activity }} {{ prediction.eta }} {% if prediction.eta_is_negative %}ago{% endif %} {% if prediction.start %} {{ prediction.start.strftime('%Y-%m-%d %H:%M') }} {% endif %} {% if prediction.end %} {{ prediction.end.strftime('%Y-%m-%d %H:%M') }} {% endif %} {{ prediction.duration }}
{% endfor %} {% endblock %}