{% extends '_base.html' %} {% load helpers %} {% block content %} {% include 'search_form.html' %}
Organization
{% if perms.dcim.view_site %}
{{ stats.site_count }}

Sites

Geographic locations

{% endif %} {% if perms.tenancy.view_tenant %}
{{ stats.tenant_count }}

Tenants

Customers or departments

{% endif %}
DCIM
{% if perms.dcim.view_rack %}
{{ stats.rack_count }}

Racks

Equipment racks, optionally organized by group

{% endif %} {% if perms.dcim.view_device %}
{{ stats.device_count }}

Devices

Rack-mounted network equipment, servers, and other devices

{% endif %}

Connections

{% if perms.dcim.view_cable %} {{ stats.cable_count }}

Cables

{% endif %} {% if perms.dcim.view_interface %} {{ stats.interface_connections_count }}

Interfaces

{% endif %} {% if perms.dcim.view_consoleport and perms.dcim.view_consoleserverport %} {{ stats.console_connections_count }}

Console

{% endif %} {% if perms.dcim.view_powerport and perms.dcim.view_poweroutlet %} {{ stats.power_connections_count }}

Power

{% endif %}
Virtualization
{% if perms.virtualization.view_cluster %}
{{ stats.cluster_count }}

Clusters

Clusters of physical hosts in which VMs reside

{% endif %} {% if perms.virtualization.view_virtualmachine %}
{{ stats.virtualmachine_count }}

Virtual Machines

Virtual compute instances running inside clusters

{% endif %}
IPAM
{% if perms.ipam.view_vrf %}
{{ stats.vrf_count }}

VRFs

Virtual routing and forwarding tables

{% endif %} {% if perms.ipam.view_aggregate %}
{{ stats.aggregate_count }}

Aggregates

Top-level IP allocations

{% endif %} {% if perms.ipam.view_prefix %}
{{ stats.prefix_count }}

Prefixes

IPv4 and IPv6 network assignments

{% endif %} {% if perms.ipam.view_ipaddress %}
{{ stats.ipaddress_count }}

IP Addresses

Individual IPv4 and IPv6 addresses

{% endif %} {% if perms.ipam.view_vlan %}
{{ stats.vlan_count }}

VLANs

Layer two domains, identified by VLAN ID

{% endif %}
Circuits
{% if perms.circuits.view_provider %}
{{ stats.provider_count }}

Providers

Organizations which provide circuit connectivity

{% endif %} {% if perms.circuits.view_circuit %}
{{ stats.circuit_count }}

Circuits

Communication links for Internet transit, peering, and other services

{% endif %}
{% if perms.secrets %}
Secrets
{{ stats.secret_count }}

Secrets

Sensitive data (such as passwords) which has been stored securely

{% endif %}
{% if perms.extras.view_topologymap %}
Global Topology Maps
{% if topology_maps %} {% for tm in topology_maps %} {% endfor %}
{{ tm }} {{ tm.description }}
{% else %}
None
{% endif %}
{% endif %} {% if report_results and perms.extras.view_reportresult %}
Reports
{% for result in report_results %} {% endfor %}
{{ result.report }} {% include 'extras/inc/report_label.html' %}
{% endif %} {% if perms.extras.view_objectchange %}
Changelog
{% for change in changelog %} {% with action=change.get_action_display|lower %}
{% if action == 'created' %} {% elif action == 'updated' %} {% elif action == 'deleted' %} {% endif %} {{ change.changed_object_type.name|bettertitle }} {% if change.changed_object.get_absolute_url %} {{ change.changed_object }} {% else %} {{ change.changed_object|default:change.object_repr }} {% endif %}
{{ change.user|default:change.user_name }} - {{ change.time|date:'SHORT_DATETIME_FORMAT' }}
{% endwith %} {% if forloop.last %} {% endif %} {% empty %}
No change history found
{% endfor %}
{% endif %}
{% endblock %}