{% extends 'base.html' %} {% if huc %}{% set page_title = huc.huc_nm %}{% endif %} {% block content %}
{% if http_code == 200 %}

Hydrological Unit: {{ huc.huc_nm }}

{% if huc.children %} {% for huc_cd in huc.children %} {% endfor %}
HUC Name
{{ huc_cd }} {{ config.HUC_LOOKUP.hucs[huc_cd].huc_nm }}
{% endif %} {% if show_locations_link %} Monitoring Locations {% endif %} {% if monitoring_locations %} {% for location in monitoring_locations %} {% endfor %}
Monitoring Locations
Site number Name Site type
{{ location.site_no }} {{ location.station_nm }} {{ config.NWIS_CODE_LOOKUP.site_tp_cd[location.site_tp_cd].name }}
{% endif %} {% else %}

Error: HTTP {{ http_code }} -- HUC not found.

{% endif %}
{% endblock content %}