{% extends 'base.html' %}
{% block main_title %}
Invoices
{% endblock %}
{% block content %}
# | Date | Client | Tags | Status | Transactions | {% if not pending_invoices and not paid_invoices %}
---|---|---|---|---|---|
No invoice found. | |||||
{{pending_invoice.invoice_number}} | {{pending_invoice.client}} | {% for tag in pending_invoice.tags %} {{tag}} {%endfor%} | {{pending_invoice.transactions.bill}} | ||
{{paid_invoice.invoice_number}} | {{paid_invoice.client}} | {% for tag in paid_invoice.tags %} {{tag}} {%endfor%} | {{paid_invoice.transactions.bill}}, {{paid_invoice.transactions.payment}} |