{% extends "invoices/base.html" %} {% load invoice_tags %} {% load base_filters %} {% block title %}{{ block.super }}{% trans 'Invoice Adjustment'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
View Invoice #{{ invoice.pk }}

{% if invoice.bill_to %}{{invoice.bill_to}}
{% endif %} {% if invoice.bill_to_phone %}{{invoice.bill_to_phone}}
{% endif %} {% if invoice.bill_to_email %}{{invoice.bill_to_email}}
{% 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 %} {% if invoice.bill_to_country %}{{invoice.bill_to_country}}{% endif %}
{{invoice.subtotal|format_currency }}
{{invoice.total|format_currency }}
{{invoice.payments_credits|format_currency }}
{{invoice.balance|format_currency }}

 

{% csrf_token %}
{% if form.void_reason.errors %} {{ form.void_reason.errors }} {% endif %}
{{ form.void_reason }}
{% if form.cancle_registration %}
{% endif %} {% if form.delete_membership %}
{% endif %}

{% trans 'Are you sure you want to void this invoice?' %}
{% trans 'This action can NOT be undone!' %}

{% trans 'No, take me back' %}   


{% endblock %}