Browse Source

Restored the option to hide the paginator on panel tables

Jeremy Stretch 8 years ago
parent
commit
6e69c9e375
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/templates/panel_table.html

+ 1 - 1
netbox/templates/panel_table.html

@@ -13,7 +13,7 @@
     {% endif %}
 </div>
 
-{% if table.rows %}
+{% if table.rows and not hide_paginator %}
     {% with paginator=table.paginator page=table.page %}
         {% include 'inc/paginator.html' %}
     {% endwith %}