{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
RFDS {% if perms.nautobot_plugin_w_rrm.change_circuitattributes %} Edit {% endif %} {% if perms.nautobot_plugin_w_rrm.delete_circuitattributes %} Delete {% endif %}

{{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %} {% if object.pk %}
CircuitAttributes
Human Readable ID {{ object.human_id|placeholder }}
FCC Status {{ object.fcc_status }}
Description {{ object.description|placeholder }}
SSID {{ object.ssid|placeholder }}
Order {{ object.order|placeholder }}
DL Reliability {{ object.dl_reliability|placeholder }}
UL Reliability {{ object.ul_reliability|placeholder }}
Outage {{ object.outage|placeholder }}
MCS Up {{ object.mcs_up|placeholder }}
MCS Down {{ object.mcs_down|placeholder }}
Power Control {{ object.power_control|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
Prediction & Thresholds - Side A
Predicted RX Power A {{ object.predicted_rx_power_a|placeholder }}
Threshold A - Upper (RSSI) {{ object.rssi_threshold_a_upper|placeholder }}
Threshold A - Lower (RSSI) {{ object.rssi_threshold_a_lower|placeholder }}
Prediction & Thresholds - Side Z
Predicted RX Power Z {{ object.predicted_rx_power_z|placeholder }}
Threshold Z - Upper (RSSI) {{ object.rssi_threshold_z_upper|placeholder }}
Threshold Z - Lower (RSSI) {{ object.rssi_threshold_z_lower|placeholder }}
{% plugin_full_width_page object %}
{% endif %} {% endblock %}