{% extends 'base_rigs.html' %} {% load button from filters %} {% block content %}
Open Event Page Delete Void {% button 'print' url='invoice_print' pk=object.pk %}
{% with object.event as object %}
{% include 'partials/contact_details.html' %}
{% include 'partials/event_details.html' %}
{% if object.event.internal %}
{% include 'partials/auth_details.html' %}
{% endif %} {% endwith %}
{% for payment in object.payment_set.all %} {% endfor %}
Date Amount Method
{{ payment.date }} {{ payment.amount|floatformat:2 }} {{ payment.get_method_display }}
Balance: {{ object.balance|floatformat:2 }}
{% with object.event as object %} {% include 'partials/item_table.html' %} {% endwith %}
{% include 'partials/last_edited.html' with target="invoice_history" %}
{% endblock %}