{% extends 'base/layout.html' %} {% load static %} {% load render_table from django_tables2 %} {% block title %}Network Canvas Views{% endblock %} {% block content %}
Search & Filter
Canvas Views
{{ canvases.count }} canvas{{ canvases.count|pluralize:"es" }}
{% if canvases %}
{% render_table table %}
{% else %}

No Canvas Views Found

Create your first network topology canvas to get started.

Create First Canvas
{% endif %}
Quick Stats
{{ canvases.count }} Canvas Views
{{ device_count|default:0 }} Total Devices
{{ vlan_count|default:0 }} VLANs
{{ cable_count|default:0 }} Connections
{% endblock %}
{% endfor %} {% else %}
No Canvas Views Found

Get started by creating your first network topology canvas.

Create Canvas
{% endif %}
About Network Canvas

Network Canvas provides interactive Layer 2 and Layer 3 network topology visualization for your NetBox infrastructure. Create custom views to visualize device relationships, VLAN configurations, and IP network topologies.

{% endblock %}