{% extends 'generic/object_retrieve.html' %} {% load helpers %} {% block content_left_page %}
Radio Profile
Name {{ object.name }}
Description {{ object.description|placeholder }}
Frequency {{ object.frequency }}
Channel Width {% if object.channel_width %} {% for width in object.channel_width %} {{ width }}MHz {% endfor %} {% else %} {{ None|placeholder }} {% endif %}
Allowed Channel List {% if object.allowed_channel_list %} {% for channel in object.allowed_channel_list %} {{ channel }} {% endfor %} {% else %} {{ None|placeholder }} {% endif %}
Transmit Power Minimum {{ object.tx_power_min|dbm}}
Transmit Power Maximum {{ object.tx_power_max|dbm}}
Recieve Power Minimum {{ object.rx_power_min|dbm}}
Regulatory Domain {{ object.get_regulatory_domain_display }}
{% endblock content_left_page %} {% block content_full_width_page %}
Supported Data Rates
{% include 'inc/table.html' with table=supported_data_rates_table %}
{% endblock content_full_width_page %}