{% extends "layout.html" %} {% block content %}

{{ entry.activity.name }} {% if entry.subcategory %} {{ entry.subcategory }} {% endif %}

{{ entry.start_time.strftime('%A, %d. %B %Y') }}

{{ entry.duration_str }}
Back to Log

Edit Entry

Tasks in this Session

{% if not tasks %}

No tasks were tracked for this session.

{% else %}
{% for task in tasks %}
{% if task.status == 'completed' %} {% endif %}
{{ task.name }} {% if task.completed_at %} Completed at {{ task.completed_at.strftime('%H:%M') }} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}