{% 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 }}

{% for month in form.get_months %}{% endfor %} {% for user_data in form.filter_per_month %} {% for _, total_time, monthly_salary in user_data.monthly_data %} {% endfor %} {% empty %} {% endfor %}
Employee{{ month|date:'N Y' }}
{{ user_data.user.contributor }}{{ total_time|duration }} €{{ monthly_salary|floatformat:0 }}
No logs found.
{% else %}

First submit the filter form to retrieve results.

{% endif %}
{% endblock %}