summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-total.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/statistics_reporting/templates/table-total.html')
-rw-r--r--modules-available/statistics_reporting/templates/table-total.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/modules-available/statistics_reporting/templates/table-total.html b/modules-available/statistics_reporting/templates/table-total.html
new file mode 100644
index 00000000..4048a178
--- /dev/null
+++ b/modules-available/statistics_reporting/templates/table-total.html
@@ -0,0 +1,22 @@
+<table id="table-total" class="table table-condensed table-striped">
+ <thead>
+ <tr>
+ <th class="text-left col-md-2"></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.totalTime_s}}</td>
+ <td class="text-left col_medianSessionLength">{{data.medianSessionLength_s}}</td>
+ <td class="text-left col_longSessions">{{data.longSessions}}</td>
+ <td class="text-left col_shortSessions">{{data.shortSessions}}</td>
+ <td class="text-left col_totalOffTime">{{data.totalOffTime_s}}</td>
+ </tr>
+ </tbody>
+</table>