{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %} {% if profile %}
{% trans "WDM Profile" %}
{% trans "Node Type" %} {{ profile.get_node_type_display }}
{% trans "Grid" %} {{ profile.get_grid_display }}
{% trans "Fiber Type" %} {{ profile.get_fiber_type_display }}
{% trans "Channel Plans" %} {{ channel_plans|length }}
{% trans "Description" %}
{% if profile.description %} {{ profile.description|markdown }} {% else %} {% trans "None" %} {% endif %}
{% if channel_plans %}
{% trans "Channel Plans" %}
{% for cp in channel_plans %} {% endfor %}
{% trans "Position" %} {% trans "Label" %} {% trans "Wavelength (nm)" %} {% trans "MUX Port" %} {% trans "DEMUX Port" %}
{{ cp.grid_position }} {{ cp.label }} {{ cp.wavelength_nm }} {{ cp.mux_front_port_template|default:"" }} {{ cp.demux_front_port_template|default:"" }}
{% endif %} {% else %}
{% trans "No WDM profile is assigned to this device type." %}
{% endif %} {% endblock %}