{% 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 %}
{% trans "View project page" %}

{% trans "Delete Invoice" %}

{% trans "For" %}: {{ object.project.title }}

{% 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 %}