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

My 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}}
{%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 %}