{% extends "timepiece/time-sheet/reports/base.html" %} {% load timepiece_tags bootstrap_toolkit %} {% load url from future %} {% block title %}Hourly Report{% endblock %} {% block extrajs %} {{ pj_filters.media }} {% endblock extrajs %} {% block bodyid %}hourly-report{% endblock bodyid %} {% block crumbs %} {{ block.super }}
  • / Hourly Report
  • {% endblock crumbs %} {% block report_nav %} {% with 'hourly_report' as active %} {{ block.super }} {% endwith %} {% endblock %} {% block report_content %}
    {% date_filters "pj_select" %}
    {{ date_form|as_bootstrap:"horizontal" }} {{ pj_filters|as_bootstrap:"horizontal" }} {% if perms.timepiece.export_project_time_sheet %} {% endif %}
    {% if project_totals %}
    {% for date in date_headers %} {% if trunc == "month" %} {% else %} {% endif %} {% endfor %} {% for rows, totals in project_totals %} {% for name, user_id, hours in rows %} {% endfor %} {% endfor %} {% endfor %} {% endfor %}
    Name{{date|date:"M Y"}}{{date|date:"M/d/Y"}}Total
    {{name}} {% for num in hours %} {{num|floatformat:2}}
    Total: {% for total in totals %} {{total|floatformat:2}}
    {% else %}

    No entries found.

    {% endif %}
    {% endblock report_content %}