{% extends 'timepiece/base.html' %} {% load timepiece_tags %} {% load bootstrap_toolkit %} {% load url from future %} {% block title %}General Ledger{% endblock %} {% block crumbs %} {{ block.super }}
  • / General Ledger
  • {% endblock crumbs %} {% block content %}

    Reports

    {{ form|as_bootstrap:"inline" }}

    Hours by Project

    {% for entry in project_totals %} {% endfor %}
    {{ entry.project__name }} {{ entry.total_hours|floatformat:2 }}
     
    Total: {{ total_hours|floatformat:2 }}

    Hours by People

    {% for entry in people_totals %} {% endfor %}
    {{ entry.user__first_name}} {{ entry.user__last_name }} {{ entry.total_hours|floatformat:2 }}
    {% endblock %}