{% extends "base.html" %} {% block body %}

{{ report_title }}

{{ report_subtitle }}

Node
{{ node_name }}
Location
{{ location_name }}
Coordinates
{{ coords_str }} • Elevation {{ elev }}m
{% if col_groups %} {% for cg in col_groups %} 1 %} colspan="{{ cg.colspan }}"{% endif %}>{{ cg.label }} {% endfor %} {% endif %} {% for header in table_headers %} {{ header.label }} {% endfor %} {% for row in table_rows %} {% if not row.is_summary %} {% for cell in row.cells %} {{ cell.value|safe }} {% endfor %} {% endif %} {% endfor %} {% for row in table_rows %} {% if row.is_summary %} {% for cell in row.cells %} {{ cell.value|safe }} {% endfor %} {% endif %} {% endfor %}
{% if report_type == 'yearly' and monthly_links %}

Monthly Reports

{% for link in monthly_links %} {{ link.label }} {% endfor %}
{% endif %}
Download TXT Download JSON
{% include "credit.html" %}
{% endblock %}