{% extends 'base.html' %}
{% block title %}Homepage{% endblock title %}
{% block content %}
{% if files %}
| Filename |
{% for file in files %}
| {{file}} |
{% endfor %}
{% else %}
{% endif %}
| ID |
Parent LineItem ID |
Amount |
Currency Type |
Vendor |
Date |
Confirmation Code |
Note |
Reassign Vendor |
Split Line? |
{% for li in last_month_lines %}
| {{li[0].id}} |
{{li[0].parent_line_item_id}} |
{{li[0].amount}} |
{{li[0].currency_type}} |
{{li[0].get_vendor()[0]}} |
{{li[0].date}} |
{{li[0].confirmation_code}} |
{{li[0].note}} |
|
Click to split line |
{% endfor %}
{% endblock content %}