network_inventory/users/templates/groups/group_list.html

9 lines
239 B
HTML

{% extends "core/base.html" %}
{% load render_table from django_tables2 %}
{% block section_title %}{{ customer }} Groups{% endblock %}
{% block content %}
<div class="table-responsive">
{% render_table groups %}
</div>
{% endblock %}