{% load static %} {% block title %}Time Logger{% endblock %} {% block content %} {% if error %} {{ error }} {% endif %}
{% for time_log in time_logs %} {% endfor %}
S/N Title Duration Date Created
{{ forloop.counter }} {{ time_log.title }} {{ time_log.duration }} {{ time_log.created }}
{% if time_logs.has_other_pages %} {% endif %} {% endblock %}