aboutsummaryrefslogtreecommitdiff
path: root/src/templates.js
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-10-11 21:47:02 -0500
committerMark Powers <markppowers0@gmail.com>2020-10-11 21:47:02 -0500
commit292048edaf0e2d4c4d591cfec1d923cb6d845991 (patch)
tree7fe5a80a5e5805c8f9d66542a3f397e6802331f5 /src/templates.js
parente242733deb546c2b7f00d302a96bee0c0e609a2e (diff)
Add edit ledger
Diffstat (limited to 'src/templates.js')
-rw-r--r--src/templates.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates.js b/src/templates.js
index 6e3b541..f7bfdfb 100644
--- a/src/templates.js
+++ b/src/templates.js
@@ -10,9 +10,9 @@ function loadTemplate(templates, name, filepath){
function setUpTemplates(){
let templates = {};
- loadTemplate(templates, "index", path.join(__dirname, 'templates/index.html'))
loadTemplate(templates, "login", path.join(__dirname, 'templates/login.html'))
loadTemplate(templates, "ledger", path.join(__dirname, 'templates/ledger.html'))
+ loadTemplate(templates, "ledger-edit", path.join(__dirname, 'templates/ledger-edit.html'))
loadTemplate(templates, "goals", path.join(__dirname, 'templates/goals.html'))
loadTemplate(templates, "expected", path.join(__dirname, 'templates/expected.html'))
loadTemplate(templates, "summary", path.join(__dirname, 'templates/summary.html'))