{% extends 'invoices/base.html' %} {% load custom_tags_and_filters %} {% block title %}Invoice{% endblock %} {% block invoiceextrahead %} {% load static %} {% endblock %} {% block content %}
{{ invoice.created_date|date:'F jS, Y @ g:i A' }} ({{ invoice.created_by.username }})
{{ invoice.project_details.project.application_identifier|default_if_none:'' }}
{{ invoice.total_amount_display }}
{{ invoice.total_payments_display }}
{{ invoice.reviewed_date|date:'F jS, Y @ g:i A' }} ({{ invoice.reviewed_by.username }})
{% else %} {% endif %}{{ invoice.voided_date|date:'F jS, Y @ g:i A' }} ({{ invoice.voided_by.username }})
{% else %} {% endif %}Invoice hasn't been reviewed
{% endif %} {% if invoice.reviewed_date %} {% endif %}Item | Details | Amount |
---|---|---|
{{ facility|default_if_none:'General Charges' }} | ||
{% if summary_item.category_name_for_item_type %}{{ summary_item.category_name_for_item_type }} -{% endif %} {{ summary_item.name|default_if_none:'' }} | {% if summary_item.get_summary_item_type_display != 'fund' %}{{ summary_item.details|default_if_none:'' }}{% endif %} | {{ summary_item.amount_display|default_if_none:'' }} |
{{ summary_item.name|default_if_none:'' }} | {% if summary_item.get_summary_item_type_display != 'fund' %}{{ summary_item.details|default_if_none:'' }}{% endif %} | {{ summary_item.amount_display|default_if_none:'' }} |
Grand Total | {{ invoice.total_amount_display }} |