Make the "new task" form functional

This commit is contained in:
Rowan Manning
2013-09-16 11:09:49 +01:00
parent a7aad37ea0
commit 7fd93d114f
5 changed files with 54 additions and 2 deletions

View File

@@ -15,7 +15,8 @@ function route (app) {
}
res.render('task', {
task: task,
results: results
results: results,
added: (typeof req.query.added !== 'undefined')
});
});
});