{% extends "timepiece/reports/base.html" %} {% load timepiece_tags bootstrap_toolkit %} {% load url from future %} {% block title %}Billable Hours Report{% endblock title %} {% block bodyid %}billable-hours{% endblock bodyid %} {% block extrajs %} {{ block.super }} {% endblock extrajs %} {% block crumbs %} {{ block.super }}
  • / Billable Hours Report
  • {% endblock crumbs %} {% block report_nav %} {% with 'billable_hours' as active %} {{ block.super }} {% endwith %} {% endblock report_nav %} {% block report_content %}
    {% date_filters "filter_form" %}
    {% if entries %}
    {% else %}

    There are no entries which match your query.

    {% endif %}
    {% for field in filter_form %} {% if field.name == 'from_date' or field.name == 'to_date' or field.name == 'trunc' %} {% if field.errors %}
      {% for e in field.errors %}
    • {{ e }}
    • {% endfor %}
    {% endif %}
    {{ field }}
    {% endif %} {% endfor %}
    {% for field in filter_form %} {% if field.name != 'from_date' and field.name != 'to_date' and field.name != 'trunc' %}
    {% if field.errors %}
      {% for e in field.errors %}
    • {{ e }}
    • {% endfor %}
    {% endif %}
    {{ field }}
    {% endif %} {% endfor %}
    {% endblock report_content %}