Skip to content

Commit

Permalink
smartvisu plugin: add datatableAdditional class to tables
Browse files Browse the repository at this point in the history
  • Loading branch information
onkelandy committed Sep 18, 2023
1 parent 5c00346 commit 53164cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smartvisu/webif/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
-->
{% set tab1title = "<strong>" ~ p.get_shortname() ~ " " ~ _('Clients') ~ "</strong> (<span id=clientcount>" ~ clients|length ~ "</span>)" %}
{% block bodytab1 %}
<table id="clienttable"></table>
<table id="clienttable" class="dataTableAdditional"></table>
{% endblock %}


Expand All @@ -276,7 +276,7 @@
{% set tab2title = "<strong>" ~ p.get_shortname() ~ " " ~ _('Items') ~ "</strong> (<span id=itemcount>" ~ items|length ~ "</span>)" %}
{% block bodytab2 %}

<table id="itemtable">
<table id="itemtable" class="dataTableAdditional">
<tbody>
{% for item in items %}
<tr><td></td>
Expand All @@ -295,7 +295,7 @@

{% set tab3title = "<strong>" ~ p.get_shortname() ~ " " ~ _('Logiken') ~ "</strong> (<span id=logiccount>" ~ logics|length ~ "</span>)" %}
{% block bodytab3 %}
<table id="logictable">
<table id="logictable" class="dataTableAdditional">
<tbody>
{% for logic in logics %}
<tr><td></td>
Expand Down

0 comments on commit 53164cd

Please sign in to comment.