{# This file is part of Polyfemos. Polyfemos is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. Polyfemos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License and GNU General Public License along with Polyfemos. If not, see . Author: Henrik Jänkävaara Copyright: 2019, University of Oulu, Sodankyla Geophysical Observatory License: GNU Lesser General Public License v3.0 or later (https://spdx.org/licenses/LGPL-3.0-or-later.html) #} {% extends 'base.htm' %} {% block head %} {% include 'datepicker.htm' %} {% endblock %} {% block title %} Alert Heat Table {% endblock %} {% block content %}
{{ form.csrf_token }}
{{ form.startdate.label }} {{ form.startdate(class_="datepicker", size="10px") }} {{ form.points_per_thbb.label }} {{ form.points_per_thbb() }}
{{ form.enddate.label }} {{ form.enddate(class_="datepicker", size="10px") }} {{ form.points_per_tib.label }} {{ form.points_per_tib() }}
{{ form.log_color.label }} {{ form.log_color() }} {{ form.submit }}
{% for station_id in station_ids %} {% endfor %} {% for sohpar_name in sohpar_names %} {% for station_id in station_ids %} {% set key = station_id+sohpar_name %} {% set value = '' %} {% if key in alertdict %} {% set value = alertdict[station_id+sohpar_name] %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ station_id }}
{{ sohpar_name }}
     {{ value['tooltip'] }}
    
{% endblock %}