{% load i18n %} {% load horillafilters %} {% load static %} {% include "filter_tags.html" %} {% if time_sheets %}
{% comment %} easy filters {% endcomment %}
{% trans "In progress" %} {% trans "Completed" %}
{% comment %} table of contents {% endcomment %}
{% trans "Employee" %}
{% comment %}
{% trans "Employee" %}
{% endcomment %}
{% trans "Project" %}
{% trans "Task" %}
{% trans "Date" %}
{% trans "Time Spent" %}
{% trans "Status" %}
{% trans "Description" %}
{% trans "Actions" %}
{% for time_sheet in time_sheets %}
Username
{{time_sheet.employee_id.employee_first_name}} {{time_sheet.employee_id.employee_last_name|default:""}}
{{time_sheet.project_id.title}}
{{time_sheet.task_id}}
{{time_sheet.date}}
{{time_sheet.time_spent}}
{{time_sheet.get_status_display}}
{{time_sheet.description|truncatechars:15}}
{% 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 %}