{% extends 'base.html' %} {% block content %}

Optical Configurations

{% if device %}
Device ID:
{{config_id}}
Device Name: {{device_name}}
{% if type == 'optical-transponder' %} {% for channel in device %} {% endfor %}
channel name Frequency Target Output Power Operational Mode Line Port Channel Status
{{channel.name.index}} {{channel.frequency}} {{channel.targetOutputPower}} {{channel.operationalMode}} {{channel.line_port}} {{channel.status}}
{% elif type == 'openroadm' %} {% for channel in device %} {% endfor %}
name type administrative state circuit pack name port interface list frequency width
{{channel.name}} {{channel.type}} {{channel.administrative_state}} {{channel.circuit_pack_name}} {{channel.port}} {{channel.interface_list}} {{channel.frequency}} {{channel.width}}
{% else %} {% for channel in device %} {% endfor %}
Channel Index Optical Band Parent Band Name Lower Frequency Upper Frequency type Source Port Destination Port Channel Status
{{channel.channel_index}} {{channel.optical_band_parent}} {{channel.band_name}} {{channel.lower_frequency}} {{channel.upper_frequency}} {{channel.type}} {{channel.src_port}} {{channel.dest_port}} {{channel.status}}
{% endif%}
{% else %}

No devices found

{% endif %} {% endblock %}