{% extends "invoices/base-wide.html" %} {% load base_filters %} {% load invoice_tags %} {% load accounting_tags %} {% block title %}{{ block.super }}{% trans 'Make an Offline Payment'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
View Invoice #{{ invoice.pk }}
{% with invoice.get_object as object %}
{% if object %} {% endif %} {% if invoice.is_tendered %} {% else %} {% endif %}
Invoice # {{ invoice.id }}
{% trans "Invoice For" %} {% if object.event.pk %} {{ object }}
Event Date: {{ object.event.start_dt }} {% else %} {{ SITE_GLOBAL_SITEDISPLAYNAME }}
{% if invoice.bill_to_first_name %} {{ invoice.bill_to_first_name }} {% endif %} {% if invoice.bill_to_last_name %}{{ invoice.bill_to_last_name }}
{% endif %} {% if invoice.bill_to_address %} {{ invoice.bill_to_address }}
{% endif %} {% if invoice.bill_to_city %}{{ invoice.bill_to_city}},{% endif %} {% if invoice.bill_to_state %}{{ invoice.bill_to_state }}{% endif %} {% if invoice.bill_to_zip_code %}{{ invoice.bill_to_zip_code }}{% endif %} {% endif %}
{% trans "Invoice Date" %} {{ invoice.create_dt|date:'N j, Y h:i a' }}
{% trans "Invoice Status" %}{% blocktrans with invoice.tender_date|date:'N j, Y h:i a' as tenddate %} Tendered {{ tenddate }} {% endblocktrans %}{% trans "Estimate" %}
{% trans "Invoice Amount" %} {{ invoice.total|format_currency }}
{% endwith %}
{% csrf_token %} {% for field in form %}
{{ field.label_tag }} {{ field }}
{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}