Fixes #22002: Enable horizontal scrolling for Context Table Panels (#22009)

This commit is contained in:
Martin Hauser 2026-04-27 23:40:50 +02:00 committed by GitHub
parent 55b48149c7
commit fa2d762f2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -2,5 +2,7 @@
{% load render_table from django_tables2 %}
{% block panel_content %}
{% render_table table 'inc/table.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
</div>
{% endblock panel_content %}