{% 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 %}
HUC |
Name |
{% for huc_cd in huc.children %}
{{ huc_cd }} |
{{ config.HUC_LOOKUP.hucs[huc_cd].huc_nm }} |
{% endfor %}
{% endif %}
{% if show_locations_link %}
Monitoring Locations
{% endif %}
{% if monitoring_locations %}
Monitoring Locations
Site number |
Name |
Site type |
{% for location in monitoring_locations %}
{{ location.site_no }} |
{{ location.station_nm }} |
{{ config.NWIS_CODE_LOOKUP.site_tp_cd[location.site_tp_cd].name }} |
{% endfor %}
{% endif %}
{% else %}
Error: HTTP {{ http_code }} -- HUC not found.
{% endif %}
{% endblock content %}