24 lines
705 B
Handlebars
24 lines
705 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{> head}}
|
|
<body>
|
|
{{> header}}
|
|
|
|
<ul class="striped_list">
|
|
{{#each entries}}
|
|
<li class="history_entry">
|
|
<span class="history_entry_category">{{this.category.name}}</span>
|
|
<span>under</span>
|
|
<span class="history_entry_duration">{{pretty_seconds this.duration.secs}}</span>
|
|
<span>från</span>
|
|
<span class="history_entry_started">{{pretty_datetime this.session.started}}</span>
|
|
<span>tills</span>
|
|
<span class="history_entry_ended">{{pretty_datetime this.session.ended}}</span>
|
|
<span>---</span>
|
|
<a href="/session/{{this.session_id}}/edit" class="history_entry_edit_button">ändra</a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</body>
|
|
</html>
|