From 589cfa26f370dfdf59f52cd6826c84686b459ba0 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Sat, 9 Apr 2022 11:43:30 -0500 Subject: [PATCH] Fix the for loop maybe --- templates/task_page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/task_page.html b/templates/task_page.html index 1f6e37e..34e960c 100644 --- a/templates/task_page.html +++ b/templates/task_page.html @@ -22,7 +22,7 @@ navbar
{% for task in tasks %} - {% includes "templates/task.html" %} + {% include "templates/task.html" %} {% endfor %} {% endblock content %}