14 lines
199 B
Handlebars
14 lines
199 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{> head}}
|
|
<body>
|
|
{{> header}}
|
|
|
|
{{#each categories_stats}}
|
|
{{#if this.last_session_start}}
|
|
{{> stats_chart this}}
|
|
{{/if}}
|
|
{{/each}}
|
|
</body>
|
|
</html>
|