You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/version-2.11.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@
28
28
*[#6124](https://github.com/netbox-community/netbox/issues/6124) - Location `parent` filter should return all child locations (not just those directly assigned)
29
29
*[#6130](https://github.com/netbox-community/netbox/issues/6130) - Improve display of assigned models in custom fields list
30
30
*[#6155](https://github.com/netbox-community/netbox/issues/6155) - Fix admin links for plugins, background tasks
31
+
*[#6171](https://github.com/netbox-community/netbox/issues/6171) - Fix display of horizontally-scrolling object lists
Copy file name to clipboardExpand all lines: netbox/templates/generic/object_list.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,6 @@ <h1>{% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bett
29
29
{% block sidebar %}{% endblock %}
30
30
</div>
31
31
{% endif %}
32
-
<divclass="table-responsive">
33
32
{% with bulk_edit_url=content_type.model_class|validated_viewname:"bulk_edit" bulk_delete_url=content_type.model_class|validated_viewname:"bulk_delete" %}
34
33
{% if permissions.change or permissions.delete %}
35
34
<formmethod="post" class="form form-horizontal">
@@ -59,7 +58,9 @@ <h1>{% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bett
59
58
</div>
60
59
</div>
61
60
{% endif %}
62
-
{% render_table table 'inc/table.html' %}
61
+
<divclass="table-responsive">
62
+
{% render_table table 'inc/table.html' %}
63
+
</div>
63
64
<divclass="pull-left noprint">
64
65
{% block bulk_buttons %}{% endblock %}
65
66
{% if bulk_edit_url and permissions.change %}
@@ -78,7 +79,6 @@ <h1>{% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bett
78
79
{% render_table table 'inc/table.html' %}
79
80
{% endif %}
80
81
{% endwith %}
81
-
</div>
82
82
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
0 commit comments