{% extends "layout.html" %} {% block title %}Scheduled Transactions{% endblock %} {% block content %}

Scheduled Transactions with Due Dates

{# Date Period #}
{#
#}
{% for row in model.data %} {% endfor %}
Scheduled Transactions
Name Start Date Last Occurred Due Date
{{ row.name }} {{ "{:%Y-%m-%d}".format(row.start_date) }} {% if row.last_occur %}{{ "{:%Y-%m-%d}".format(row.last_occur) }}{% endif %} {{ row.due_date.value }}
{% endblock %} {% block scripts %} {% endblock %}