{% extends "base.html" %} {% load accounting_tags %} {% load static %} {% block title %}Journal Entries{% endblock %} {% block content %}
| Date | Entry # | Description | Job | Debit | Credit | Actions |
|---|---|---|---|---|---|---|
| {{ entry.date|date:"Y-m-d" }} | {{ entry.entry_number }} | {{ entry.description|truncatechars:50 }} | {% if entry.job %} {{ entry.job.name }} {% endif %} | {{ entry.total_debit|floatformat:2 }} | {{ entry.total_credit|floatformat:2 }} |
{% if entry.status == 'posted' %}
View
{% else %}
View / Edit
{% endif %}
|
| No journal entries found | ||||||
| Page Totals | {{ page_obj|sum_attr:'total_debit'|floatformat:2 }} | {{ page_obj|sum_attr:'total_credit'|floatformat:2 }} | ||||