1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #6196: Fix object list display for users with read-only permissions

This commit is contained in:
jeremystretch
2021-04-19 10:46:23 -04:00
parent 6bd4b3c167
commit 97c087ef5f
2 changed files with 4 additions and 1 deletions

View File

@@ -76,7 +76,9 @@
</div>
</form>
{% else %}
{% render_table table 'inc/table.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
</div>
{% endif %}
{% endwith %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}