{# 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 %} SOH Table {% endblock %} {% block content %}
{{ form.csrf_token }}
{{ form.date.label }} {{ form.date(class_="datepicker", size="10px", value=form.date.data) }} {{ form.realtimeness_bool.label }} {{ form.realtimeness_bool() }} {{ form.realtimeness_limit.label }} {{ form.realtimeness_limit(size="5px") }}
{{ form.submit_sd }} {{ form.submit_pd }} {{ form.show_all.label }} {{ form.show_all() }} {{ 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 = 'none' %} {% if key in alertdict %} {% set value = alertdict[station_id+sohpar_name] %} {% endif %} {% endfor %} {% endfor %}
{{ header }}
{{ station_id }}
{{ sohpar_name }}     
{% endblock %}