{% extends 'scipost/base.html' %} {% block breadcrumb_items %} Team Timesheets {% endblock %} {% block pagetitle %}: Team Timesheets{% endblock pagetitle %} {% load bootstrap %} {% load scipost_extras %} {% block content %}

Team Timesheets

{{ form|bootstrap }}

Team Timesheets

{% for total in totals %}

{{ total.user.first_name }} {{ total.user.last_name }}

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

Timesheet is empty for this month.

{% endfor %}
{% endblock %}