{% extends 'timepiece/time-sheet/invoice/base.html' %} {% load timepiece_tags bootstrap_toolkit %} {% load url from future %} {% block title %}Invoices{% endblock %} {% block crumbs %} {{ block.super }}
  • / Summary
  • {% endblock crumbs %} {% block content %}

    Invoice Summary

    {{ search_form|as_bootstrap:"inline" }}
    {% load pagination_tags %}
    {% if invoices %} {% autopaginate invoices %} {% paginate %} {% 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 }}
    {% paginate %} {% else %}

    There are no invoices.

    {% endif %}
    {% endblock %}