{% extends "base-apply.html" %} {% load i18n humanize invoice_tools %} {% block title %} {% trans "Invoice" %}: {{ object.project.title }}{% endblock %} {% block content %} {% display_invoice_status_for_user user object as invoice_status %} {% adminbar %} {% slot back_link %} {% trans "View project page" %} {% endslot %} {% slot header %}{% trans "Delete Invoice" %}{% endslot %} {% slot sub_heading %}{% trans "For" %}: {{ object.project.title }}{% endslot %} {% endadminbar %}

{% trans "Status" %}: {{ invoice_status }}

{% is_vendor_setup request as show_vendor_information %} {% if show_vendor_information %}

{% trans "Vendor" %}: {{ object.project.vendor.name }}

{% endif %}

{% trans "Invoice Number" %}: {{ object.pk }}

{% csrf_token %}

{% trans "Are you sure you want to delete this invoice for" %} {{ object.project.title }}?

{% endblock %}