{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
{% if 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 }} |
{% if profile.description %}
{{ profile.description|markdown }}
{% else %}
{% trans "None" %}
{% endif %}
{% if channel_plans %}
| {% trans "Position" %} |
{% trans "Label" %} |
{% trans "Wavelength (nm)" %} |
{% trans "MUX Port" %} |
{% trans "DEMUX Port" %} |
{% for cp in channel_plans %}
| {{ cp.grid_position }} |
{{ cp.label }} |
{{ cp.wavelength_nm }} |
{{ cp.mux_front_port_template|default:"" }} |
{{ cp.demux_front_port_template|default:"" }} |
{% endfor %}
{% endif %}
{% else %}
{% trans "No WDM profile is assigned to this device type." %}
{% endif %}
{% endblock %}