{% extends 'timepiece/invoice/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Edit Invoice{% endblock title %} {% block crumbs %} {{ block.super }}
  • / Edit Invoice
  • {% endblock crumbs %} {% block content %}
    {% include "timepiece/invoice/_subnav.html" with invoice=invoice current="edit" %}
    {% csrf_token %} {{ invoice_form.as_p }} Delete Invoice
    {% if billable_entries %}

    Selected Billable Entries

    {% with entries=billable_entries %} {% include 'timepiece/invoice/_edit_entry_list.html' %} {% endwith %} {% else %}

    No billable entries were found.

    {% endif %} {% if nonbillable_entries %}

    Selected Non-billable Entries

    {% with entries=nonbillable_entries %} {% include 'timepiece/invoice/_edit_entry_list.html' %} {% endwith %} {% else %}

    No non-billable entries were found.

    {% endif %}
    {% endblock content %}