diff --git a/app/static/monthly_budget_summary.js b/app/static/monthly_budget_summary.js new file mode 100644 index 0000000..32fae99 --- /dev/null +++ b/app/static/monthly_budget_summary.js @@ -0,0 +1,10 @@ +const monthSelector = document.getElementById('month-selector'); +const tableBody = document.getElementById('table-body'); + + +document.addEventListener("DOMContentLoaded", (event) => { + displayMonthLineItems(monthSelector.value); + monthSelector.addEventListener('change', (e) => { + displayMonthLineItems(e.target.value); + }) + }); \ No newline at end of file diff --git a/app/templates/monthly_budget_summary.html b/app/templates/monthly_budget_summary.html new file mode 100644 index 0000000..b19b103 --- /dev/null +++ b/app/templates/monthly_budget_summary.html @@ -0,0 +1,47 @@ +{% extends 'base.html' %} +{% block title %}Monthly Budget Summary{% endblock title %} + +{% block content %} +
+
+
+
+ Monthly Budget Summary +
+ + + +
+
+
+ + + + + + + + + + + + + + + + + + +
IDParent LineItem IDAmountCurrency TypeVendorDateConfirmation CodeNoteReassign VendorSplit Line?
Loading...
+
+
+
+
+
+ + +{% endblock content %} \ No newline at end of file