{% extends 'finances/base.html' %} {% block breadcrumb_items %} {{ block.super }} Team timesheets Detailed timesheets {% endblock %} {% block pagetitle %}: Team timesheets{% endblock pagetitle %} {% load bootstrap %} {% load scipost_extras %} {% block content %}

Detailed timesheets


{{form.employee|bootstrap }}
{{ form.start }}
{{ form.end }}

{% if form.is_bound and form.is_valid %}

Team timesheets

{% for user_log in form.filter %}

{{ user_log.user.first_name }} {{ user_log.user.last_name }}

{% for log in user_log.logs %} {% endfor %}
Date Related to object Log type Comments Duration
{{ log.work_date }} {{ log.content }} {{ log.log_type }} {{ log.comments }} {{ log.duration|duration }}
Total: {{ user_log.duration.total|duration }}
{% empty %}

No logs found.

{% endfor %} {% else %}

First submit the filter form to retrieve results.

{% endif %}
{% endblock %}