{% extends 'base_network.html' %} {% if network_cd %}{% set page_title = 'Networks' %}{% endif %} {% import 'macros/components.html' as components %} {% block content %}
{% if http_code == 200 %}

Networks

{% if network_cd %} {% if collection.description %}

Network: {{ network_cd }}

Description: {{ collection.description }}

{% else %}

Network: {{ network_cd }}

Description: Not Available

{% endif %} {{ components.NetworkComponent(network_cd, extent) }} {% else %}

Select a Network

{% for network in collection %} {% endfor %}
Network Title Description
{{ network.id }} {{ network.title }} {{ network.description }}
{% endif %} {% else %}

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

{% endif %}
{% endblock content %}