summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-total.html
diff options
context:
space:
mode:
authorSimon Rettberg2017-02-07 14:33:04 +0100
committerSimon Rettberg2017-02-07 14:33:04 +0100
commit3428949ab80ad023693834a789008f230728493a (patch)
treeda622c02575ed2d8613779d75df609466f62316c /modules-available/statistics_reporting/templates/table-total.html
parent[statistics_reporting] Excel wants ';' in CSV (diff)
downloadslx-admin-3428949ab80ad023693834a789008f230728493a.tar.gz
slx-admin-3428949ab80ad023693834a789008f230728493a.tar.xz
slx-admin-3428949ab80ad023693834a789008f230728493a.zip
[statistics_reporting] Fix hiding of checkboxes not matching any column
Diffstat (limited to 'modules-available/statistics_reporting/templates/table-total.html')
-rw-r--r--modules-available/statistics_reporting/templates/table-total.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/modules-available/statistics_reporting/templates/table-total.html b/modules-available/statistics_reporting/templates/table-total.html
index 2e100ae5..e59dda25 100644
--- a/modules-available/statistics_reporting/templates/table-total.html
+++ b/modules-available/statistics_reporting/templates/table-total.html
@@ -2,21 +2,21 @@
<thead>
<tr>
<th class="text-left col-md-2"></th>
- <th class="text-left col_totaltime">{{lang_totalTime}}</th>
- <th class="text-left col_mediantime">{{lang_medianSessionLength}}</th>
- <th class="text-left col_longsessions">{{lang_longSessions}}</th>
- <th class="text-left col_shortsessions">{{lang_shortSessions}}</th>
- <th class="text-left col_timeoffline">{{lang_totalOffTime}}</th>
+ <th class="text-left col_totalTime">{{lang_totalTime}}</th>
+ <th class="text-left col_medianSessionLength">{{lang_medianSessionLength}}</th>
+ <th class="text-left col_longSessions">{{lang_longSessions}}</th>
+ <th class="text-left col_shortSessions">{{lang_shortSessions}}</th>
+ <th class="text-left col_totalOffTime">{{lang_totalOffTime}}</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-left">{{lang_total}}</th>
- <td class="text-left col_totaltime">{{data.time_s}}</td>
- <td class="text-left col_mediantime">{{data.medianTime_s}}</td>
- <td class="text-left col_longsessions">{{data.sessions}}</td>
- <td class="text-left col_shortsessions">{{data.shortSessions}}</td>
- <td class="text-left col_timeoffline">{{data.totalOfftime_s}}</td>
+ <td class="text-left col_totalTime">{{data.time_s}}</td>
+ <td class="text-left col_medianSessionLength">{{data.medianTime_s}}</td>
+ <td class="text-left col_longSessions">{{data.sessions}}</td>
+ <td class="text-left col_shortSessions">{{data.shortSessions}}</td>
+ <td class="text-left col_totalOffTime">{{data.totalOfftime_s}}</td>
</tr>
</tbody>
</table>