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

My Configurations

{% if device %}
Device ID:
{{config_id}}
Device Name: {{device_name}}
{% for channel in device %}
channel name:{{channel.name.index}}
Frequency:

{{channel.frequency}}

Target Output Power: {{channel.targetOutputPower}}
Operational Mode: {{channel.operationalMode}}
Line Port: {{channel.line_port}}
{% if channel.status%}
Channel Status : {{channel.status}}
{%endif %}
{% endfor %}
{% else %}

No devices found

{% endif %} {% endblock %}