{% extends 'base.html' %} {% import 'macros/components.html' as components %} {% if stations|length == 1 %}{% set page_title = stations[0].station_nm %}{% endif %} {% block extra_head_tags %} {% if status_code == 200 %} {% if stations|length == 1 %} {% endif %} {% endif %} {% endblock %} {% block page_script %} {% if json_ld %} {% endif %} {% endblock page_script %} {% set body_id = 'monitoring-location' %} {% block content %}
{% if status_code == 200 %} {% if stations|length > 1 %}

Multiple sites found

Please pick a site:

{% for site in stations %} {% endfor %}
Agency Site number Site name
{{ site.agency_cd }} {{ site.site_no }} {{ site.station_nm }}
{% else %} {{ components.TimeseriesComponent(stations[0].site_no) }} {% if stations[0].dec_lat_va and stations[0].dec_long_va %} {{ components.MapComponent(stations[0].site_no, stations[0].dec_lat_va, stations[0].dec_long_va) }} {% endif %} {% if parm_grp_summary %} {% endif %} {% if questions_link %}
Email USGS questions about this site
{% endif %} {% endif %} {% else %}

Error: HTTP {{ status_code }} -- {{ reason }}

{% endif %}
{% endblock content %}