mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
258 B
HTML
9 lines
258 B
HTML
{% extends 'django_tables2/table.html' %}
|
|
{% load django_tables2 %}
|
|
|
|
{# Extends the stock django_tables2 template to provide custom formatting of the pagination controls #}
|
|
|
|
{% block pagination %}
|
|
{% include 'paginator.html' %}
|
|
{% endblock pagination %}
|