From 6e69c9e3757fe3989781751a47fe562b92c94382 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 17 May 2017 12:18:32 -0400 Subject: [PATCH] Restored the option to hide the paginator on panel tables --- netbox/templates/panel_table.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/panel_table.html b/netbox/templates/panel_table.html index 208e98a88..26e623675 100644 --- a/netbox/templates/panel_table.html +++ b/netbox/templates/panel_table.html @@ -13,7 +13,7 @@ {% endif %} -{% if table.rows %} +{% if table.rows and not hide_paginator %} {% with paginator=table.paginator page=table.page %} {% include 'inc/paginator.html' %} {% endwith %}