network_inventory/licenses/templates/licenses/license_list.html

12 lines
320 B
HTML

{% extends "core/base.html" %}
{% load render_table from django_tables2 %}
{% block section_title %}Licenses{% endblock %}
{% block content %}
<h3>User Licenses</h3>
{% render_table user_licenses %}
<h3>Computer Licenses</h3>
<div class="table-responsive">
{% render_table computer_licenses %}
</div>
{% endblock %}