{% extends "base.html" %} {% from "macros.html" import diagram with context %} {% block title %}Period{% endblock %} {% block content_title %}Period{% endblock %} {% block content %} {{ diagram("period", intervals, current) }}
{% for datetime, intensity in period %} {% endfor %}
Date Intensity
{{ datetime.date() }} {{ intensity }}
{% endblock %} {% set parent_page = 'index_view' %}