{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Invoices{% endblock %} {% block content %}

Invoice Summary

Invoices

{% if invoices %} {% for invoice in invoices %} {% endfor %}
Invoice Reference Project Status Invoiced by Created on Starting on Ending on Comments
{{ invoice.pk }} {{ invoice.number|default:'' }} {{ invoice.project }} {{ invoice.status|capfirst }} {{ invoice.user.get_full_name }} {{ invoice.created|date:"M d Y P" }} {{ invoice.start|date:"M d Y" }} {{ invoice.end|date:"M d Y" }} {{ invoice.comments|truncatewords:12 }}
{% else %}

There are no invoices.

{% endif %} {% endblock %}