{% load i18n %} {% load static %} {% load basefilters %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% include "filter_tags.html" %} {% comment %} easy filters {% endcomment %}
{% trans "In progress" %} {% trans "Completed" %}
{% if time_sheets %}
{% for time_sheet in time_sheets %}
Username
{{time_sheet.employee_id}} {{time_sheet.date}}
{{time_sheet.project_id}}
{{time_sheet.task_id}} | {% trans "Time Spent" %} : {{time_sheet.time_spent}}
{% endfor %}
{% trans "Page" %} {{ time_sheets.number }} {% trans "of" %} {{ time_sheets.paginator.num_pages }}.
{% else %}
Page not found. 404.

{% trans "There are currently no available timesheets; please create a new one." %}

{% endif %}