mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 03:45:26 +00:00
Last report row is not bold
This commit is contained in:
parent
c7b93cff06
commit
3d7da1fcc2
1 changed files with 6 additions and 2 deletions
|
|
@ -19,8 +19,12 @@
|
|||
{% end %}
|
||||
{% end %}
|
||||
|
||||
{% for j in range(2, #report.values) do %}
|
||||
<td class='text-right col-sm-1'>{{report.values[j][i]}}</td>
|
||||
{% for j in range(2, #report.values) do %}
|
||||
{% if i == report.rows then %}
|
||||
<th class='text-right col-sm-1'>{{report.values[j][i]}}</th> <!-- Total-->
|
||||
{% else %}
|
||||
<td class='text-right col-sm-1'>{{report.values[j][i]}}</td>
|
||||
{% end %}
|
||||
{% end %}
|
||||
</tr>
|
||||
{% end %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue