network_inventory/inventory/templates/inventory/net_details.html

10 lines
260 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 %}
{% if net.description %}
<p>{{ net.description }}</p>
{% endif %}
{% render_table table %}
2019-07-28 22:02:07 +02:00
{% endblock %}