{% extends 'timepiece/invoice/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Invoice Detail{% endblock title %} {% block crumbs %} {{ block.super }}
  • / Invoice Detail
  • {% endblock crumbs %} {% block content %}
    {% include "timepiece/invoice/_subnav.html" with invoice=invoice current="detail" %}
    {% include 'timepiece/invoice/_invoice.html' %}
    {% if billable_totals %}

    Billable Totals

    {% with totals=billable_totals %} {% include 'timepiece/invoice/_totals.html' %} {% endwith %} {% endif %} {% if nonbillable_totals %}

    Non-billable Totals

    {% with totals=nonbillable_totals %} {% include 'timepiece/invoice/_totals.html' %} {% endwith %} {% endif %}
    {% endblock content %}