{% extends "base-apply.html" %} {% load i18n humanize invoice_tools %} {% block title %}{% trans "Invoice" %}: {{ object.project.title }}{% endblock %} {% block content %}
{% trans "Back to project" %}

{% trans "Invoice" %}

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

{% trans "Status" %}: {{ object.get_status_display }}

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

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

{% trans "Invoice" %}

{{object.filename}}

{% trans "Supporting Documents" %}
{% for document in object.supporting_documents.all %}

{{document.filename}}

{% endfor %}
{% endblock %}