{% extends 'timeseer.html' %} {% from 'data-service-header.html' import data_service_breadcrumb, data_service_header with context %} {% from 'macros.html' import alerter, menu_back %} {% block csp_style %} 'self' 'unsafe-inline' {% endblock %} {% block scripts %} {% endblock %} {% block styles %} {% endblock %} {% block menu %} {{ menu_back(url_for('.show_data_service_view_bin', binid=current_bin.db_id, sourcename=source_name)) }} {% endblock %} {% set title = 'Bins' %} {% block breadcrumb %} {{ data_service_breadcrumb(current_bin, [ title ]) }} {% endblock %} {% block main %} {{ data_service_header(current_bin, title) }}
{{ alerter() }} {% if evolution|count > 1 %}
{% for view_score in evolution|sort(attribute='view_bin.start_date', reverse=True) %} {% endfor %}
{{ view_score.view_bin.start_date|ts_datetime }} {{ view_score.score }}
{% endif %} {% if evolution|count > 0 %} {% if evolution|count > 1 %} {% endif %} {% for view_score in evolution|sort(attribute='view_bin.start_date', reverse=True) %} {% set view_bin = view_score.view_bin %} {% if evolution|count > 1 %} {% endif %} {% endfor %}
BinCompare to
{{ view_bin.start_date|ts_datetime }} - {{ view_bin.end_date|ts_datetime }}
{% if source_name %} {% endif %}
{% else %}

No time windows with scores found.

{% endif %}
{% if evolution|count > 1 %} {% endif %} {% endblock %}