{% extends "timepiece/time-sheet/reports/base.html" %}
{% load timepiece_tags bootstrap_toolkit %}
{% load url from future %}
{% block title %}General Ledger Report{% endblock %}
{% block crumbs %}
{{ block.super }}
/ General Ledger Report
{% endblock crumbs %}
{% block report_nav %}
{% with 'timepiece-summary' as active %}
{{ block.super }}
{% endwith %}
{% endblock report_nav %}
{% block report_content %}
Hours by Project
{% for entry in project_totals %}
{{ entry.project__name }} |
{{ entry.total_hours|floatformat:2 }} |
{% endfor %}
|
Total: |
{{ total_hours|floatformat:2 }} |
{% endblock report_content %}