{% extends 'index.html' %} {% load static %} {% load l10n %} {% load humanize %} {% block title %}Dashboard{% endblock %} {% block content %}

Recent Transactions

{% for transaction in transactions %} {% endfor %}
Date Type Subcategory Amount Invoice # Description View
{{ transaction.date }} {{ transaction.trans_type.trans_type }} {{ transaction.sub_cat }} $ {{ transaction.amount|floatformat:2|intcomma }} {{ transaction.invoice_numb }} {{ transaction.transaction }}

Unpaid Invoices

{% for invoice in unpaid_invoices %} {% empty %} {% endfor %}
Invoice # Client Event Amount Due Date View
{{ invoice.invoice_numb }} {{ invoice.client }} {{ invoice.event }} $ {{ invoice.amount|floatformat:2|intcomma }} {{ invoice.due }}
No unpaid invoices found.

Recent Invoices

{% for invoice in recent_invoices %} {% empty %} {% endfor %}
Invoice # Client Event Amount Date Due Date Paid View
{{ invoice.invoice_numb }} {{ invoice.client }} {{ invoice.event }} $ {{ invoice.amount|floatformat:2|intcomma }} {{ invoice.date }} {{ invoice.due }} {% if invoice.paid == "Yes" %} Paid {% else %} Unpaid {% endif %}
No recent invoices found.

Current Month

Total Income: $ {{ income_total|floatformat:2|intcomma }}

Total Expense: $ {{ expense_total|floatformat:2|intcomma }}

YTD Summary ({{ current_year }})
{% for item in ytd_subcategory_totals %} {% empty %} {% endfor %} {% if ytd_subcategory_totals %} {% endif %}
Subcategory Type Total
{{ item.sub_cat__sub_cat }} {{ item.trans_type__trans_type }} $ {{ item.total|floatformat:1|intcomma }}
No data available.
Total: $ {{ ytd_subcategory_grand_total|floatformat:2|intcomma }}

Mileage Log

{% for mile in mileage_list %} {% empty %} {% endfor %}
Date Client Vehicle Start End Total Type Actions
{{ mile.date }} {{ mile.client }} {{ mile.vehicle }} {{ mile.begin }} {{ mile.end }} {{ mile.total }} {{ mile.mileage_type }}  
No mileage entries.

Yearly Mileage Summary

Total Taxable Miles for {{ current_year }}:  {{ total_miles }}

Total Taxable Mileage Amount ($ .{{ mileage_rate }} per mile):   $ {{ taxable_dollars|floatformat:2|intcomma }}


Financial Settings

{% endblock %}