{% extends 'base.html' %} {% block title %}Homepage{% endblock title %} {% block content %}
{% if files %}
File available in static folder for upload
{% for file in files %} {% endfor %}
Filename
{{file}}
{% else %}
No files in the upload folder
{% endif %}
Line Items
{% for li in all_line_items %} {% endfor %}
ID Parent LineItem ID Amount Currency Type Vendor Date Confirmation Code Note Reassign Vendor Split Line?
{{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
{% endblock content %}