{% extends 'timepiece/base.html' %}
{% load timepiece_tags %}
{% load bootstrap_toolkit %}
{% block title %}General Ledger{% endblock %}
{% block crumbs %}
{{ block.super }}
/ General Ledger
{% endblock crumbs %}
{% block content %}
Hours by Project
{% for entry in project_totals %}
{{ entry.project__name }} |
{{ entry.total_hours|floatformat:2 }} |
{% endfor %}
|
Total: |
{{ total_hours|floatformat:2 }} |
Hours by People
{% for entry in people_totals %}
{{ entry.user__first_name}} {{ entry.user__last_name }} |
{{ entry.total_hours|floatformat:2 }} |
{% endfor %}
{% endblock %}