Skip to content

Commit

Permalink
17754 fix per-page on version history (#17766)
Browse files Browse the repository at this point in the history
* 17754 fix per-page on version history

* 17754 remove htmx table

* Use non-HTMX template for static tables

---------

Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
  • Loading branch information
arthanson and jeremystretch authored Oct 16, 2024
1 parent 532dbab commit 82de559
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions netbox/templates/core/plugin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{% load helpers %}
{% load form_helpers %}
{% load i18n %}
{% load render_table from django_tables2 %}

{% block title %}{{ plugin.title_long }}{% endblock %}

Expand Down Expand Up @@ -93,8 +94,8 @@ <h2 class="card-header">{% trans "Plugin Details" %}</h2>
<div class="col col-6">
<div class="card">
<h2 class="card-header">{% trans "Version History" %}</h2>
<div class="htmx-container table-responsive" id="object_list">
{% include 'htmx/table.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
</div>
</div>
</div>
Expand Down

0 comments on commit 82de559

Please sign in to comment.