network_inventory/nets/templates/nets/net_list.html
2020-08-03 21:10:05 +02:00

9 lines
228 B
HTML

{% extends "core/base.html" %}
{% load render_table from django_tables2 %}
{% block section_title %}List of Nets{% endblock %}
{% block content %}
<div class="table-responsive">
{% render_table nets %}
</div>
{% endblock %}