network_inventory/network_inventory/inventory/templates/inventory/net_details.html

7 lines
192 B
HTML
Raw Normal View History

2019-07-28 22:02:07 +02:00
{% extends "inventory/base.html" %}
2019-08-02 13:05:42 +02:00
{% load render_table from django_tables2 %}
2019-07-28 22:02:07 +02:00
{% block section_title %}{{ net.name }}{% endblock %}
{% block content %}
2019-08-02 13:05:42 +02:00
{% render_table net %}
2019-07-28 22:02:07 +02:00
{% endblock %}