{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %} {% if not port_sync_valid %} {% endif %}
{% trans "WDM Node" %}
{% trans "Device" %} {{ object.device|linkify }}
{% trans "Node Type" %} {{ object.get_node_type_display }}
{% trans "Grid" %} {{ object.get_grid_display }}
{% trans "Channels" %} {{ channel_count }}
{% trans "Line Ports" %} {{ line_port_count }}
{% trans "Channel Utilization" %}
{% if channel_stats.total %}
{% if channel_stats.active_connected %}
{{ channel_stats.active_connected }}
{% endif %} {% if channel_stats.active_disconnected %}
{{ channel_stats.active_disconnected }}
{% endif %} {% if channel_stats.reserved_connected %}
{{ channel_stats.reserved_connected }}
{% endif %} {% if channel_stats.reserved_disconnected %}
{{ channel_stats.reserved_disconnected }}
{% endif %} {% if channel_stats.available_connected %}
{{ channel_stats.available_connected }}
{% endif %}
{% trans "Active" %} {% trans "Active (no cable)" %} {% trans "Reserved" %} {% trans "Reserved (no cable)" %} {% trans "Connected" %} {% trans "Available" %} {{ channel_stats.total }} {% trans "total" %}
{% else %}

{% trans "No channels configured." %}

{% endif %}
{% if object.description %}
{% trans "Description" %}
{{ object.description|markdown }}
{% endif %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
{% plugin_full_width_page object %} {% endblock %}