{% extends "base.html" %} {% load helpers %} {% block title %}Function Code Coverage{% endblock title %} {% block content %}

Function Code Coverage

Overview of Function Code assignments across all devices.

Total Devices

{{ stats.total_devices }}

Assigned

{{ stats.assigned_devices }}

Unassigned

{% if stats.unassigned_devices %} {{ stats.unassigned_devices }} {% else %} {{ stats.unassigned_devices }} {% endif %}

Inactive Assignments

{% if stats.inactive_assignments %} {{ stats.inactive_assignments }} {% else %} {{ stats.inactive_assignments }} {% endif %}

Assignments by Function Code
{% for row in stats.function_code_rows %} {% empty %} {% endfor %}
Function Code Devices
{{ row.function_code.name }} {{ row.device_count }}
No Function Codes defined.
{% include "nautobot_function_codes/inc/coverage_group_table.html" with title="Coverage by Status" rows=stats.status_rows %}
{% include "nautobot_function_codes/inc/coverage_group_table.html" with title="Coverage by Location" rows=stats.location_rows %}
{% include "nautobot_function_codes/inc/coverage_group_table.html" with title="Coverage by Role" rows=stats.role_rows %}
{% endblock content %}