{% extends 'allianceauth/base.html' %} {% load i18n %} {% load humanize %} {% load invoices %} {% block page_title %}{% app_name %}{% endblock %} {% block content %}

Outstanding

{% if outstanding_isk > 0 %}

Ƶ {{ outstanding_isk|intcomma }}


All Payments are to be made to {{ recipt_corp }}
All payments made to other places will not be receipted!

All Payments MUST include the Reference in the Reason Field
Contact an Admin for assistance, if you made an error

{% else %}

No Payment Required


All Payments are to be made to {{ recipt_corp }}
All payments made to other places will not be receipted!

All Payments MUST include the Reference in the Reason Field
Contact an Admin for assistance, if you made an error

{% endif %}

Key

Paid
Outstanding
Overdue

Your Contributions

{% for inv in invoices %} {% endfor %} {% for inv in complete_invoices %} {% endfor %}
Character Corporation Amount Reference Due Date Note Paid
{{inv.character}}
{{inv.character.character_ownership.user.profile.main_character.character_name}}
{{inv.character.character_ownership.user.profile.main_character.corporation_name}} {{inv.amount|intcomma}} {{inv.invoice_ref}} {{inv.due_date|date:"Y-m-d h:i"}} {{inv.note}} No
{{inv.character}}
{{inv.character.character_ownership.user.profile.main_character.character_name}}
{{inv.character.character_ownership.user.profile.main_character.corporation_name}} {{inv.amount|intcomma}} {{inv.invoice_ref}} {{inv.due_date|date:"Y-m-d h:i"}} Paid: {{inv.payment.date|date:"Y-m-d h:i"}} Yes
{% if admin_invoices|length > 0 %}

Outstanding Contributions

{% if admin_invoices %}
{% for inv in admin_invoices %} {% endfor %}
{% endif %}
{% endif %}
{% endblock %} {% block extra_css %} {% include 'bundles/datatables-css.html' %} {% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_script %} $(document).ready(function() { $('#outstanding-table').DataTable({ "filterDropDown": { columns: [ { idx: 7 } ] }, "lengthMenu": [ [25, 50, -1], [25, 50, "All"] ], "order": [ [5, "asc"] ], "columnDefs": [{ "visible": false, "targets": [7] }, { "sortable": false, "targets": 0 }] }); $('#paid-table').DataTable({ "filterDropDown": { columns: [{ idx: 2 },{ idx: 3 },{ idx: 9 }] }, "lengthMenu": [ [25, 50, -1], [25, 50, "All"] ], "order": [ [6, "asc"] ], "columnDefs": [{ "visible": false, "targets": [8,9] }, { "sortable": false, "targets": 0 }] }); }); {% endblock %}}