{% load i18n %} {% load horillafilters %} {% load static %}
Time Sheet
{% comment %} for add timesheet {% endcomment %}
{% if time_sheets %}
{% 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 %}
{% else %}
Page not found. 404.

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

{% endif %}