network_inventory/licenses/templates/licenses/license_list.html

12 lines
320 B
HTML
Raw Normal View History

2020-01-11 17:41:03 +01:00
{% extends "core/base.html" %}
2019-12-29 23:54:27 +01:00
{% 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>
2020-08-03 21:10:05 +02:00
<div class="table-responsive">
{% render_table computer_licenses %}
</div>
2019-12-29 23:54:27 +01:00
{% endblock %}