network_inventory/customers/templates/customers/customer_list.html

7 lines
196 B
HTML
Raw Normal View History

2020-01-11 17:41:03 +01:00
{% extends "core/base.html" %}
2019-08-02 13:05:42 +02:00
{% load render_table from django_tables2 %}
2019-06-10 21:56:21 +02:00
{% block section_title %}List of Customers{% endblock %}
{% block content %}
2019-08-02 13:05:42 +02:00
{% render_table customers %}
2019-06-10 21:56:21 +02:00
{% endblock %}