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

Timesheets

See detailed timesheets

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

Team timesheets

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

{% include "finances/_worklog_summary_table.html" with logs_filter_form=form %} {% else %}

First submit the filter form to retrieve results.

{% endif %}
{% endblock %}