{% extends "base.html" %}
{% block content %}
{{ 'Chart of Accounts' if upload_type == 'COA' else 'Entry' }} Rows
Back
{% if upload_type == 'COA' %}
| Account No |
Description |
{% for account_no, description in rows %}
| {{ account_no }} |
{{ description }} |
{% else %}
| No rows. |
{% endfor %}
{% else %}
| Date |
Account |
Contra |
Amount |
Reference |
Int. Balanced |
{% for date, acct, contra, amt, ref, ib in rows %}
| {{ date }} |
{{ acct }} |
{{ contra or '' }} |
{{ "%.2f"|format(amt|float) }} |
{{ ref or '' }} |
{{ 'yes' if ib else '' }} |
{% else %}
| No rows. |
{% endfor %}
{% endif %}
{% endblock %}