Files
stl/templates/history.hbs
2020-10-30 23:20:24 +01:00

32 lines
1.2 KiB
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<link rel="icon" type="image/png" href="/static/icon.png">
<link rel="stylesheet" href="/static/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono&display=swap">
<title>stl</title>
</head>
<body>
<h1 class="title">stl</h1>
<ul class="striped_list">
{{#each entries}}
<li class="history_entry">
<span class="history_entry_category">{{this.category.name}}</span>
<span> for </span>
<span class="history_entry_duration">{{pretty_seconds this.duration.secs}}</span>
<span> from </span>
<span class="history_entry_started">{{pretty_datetime this.session.started}}</span>
<span> to </span>
<span class="history_entry_ended">{{pretty_datetime this.session.ended}}</span>
</li>
{{/each}}
</ul>
</body>
</html>