Some work on the tasks CRUD

This commit is contained in:
simon
2018-02-21 21:52:41 -05:00
parent 165844e4ca
commit 1602f47b4e
8 changed files with 171 additions and 24 deletions

6
run.py
View File

@@ -192,7 +192,11 @@ def directory_del(dir_id):
@app.route("/task")
def task():
return
tasks = storage.tasks()
directories = storage.dirs()
return render_template("task.html", tasks=tasks, directories=directories)
@app.route("/dashboard")
def dashboard():