diff --git a/templates/tasks.html b/templates/tasks.html
index 5b7cd59..bca7a2e 100644
--- a/templates/tasks.html
+++ b/templates/tasks.html
@@ -18,7 +18,7 @@
-
+
@@ -51,17 +51,21 @@
+ {% if blocked_tasks %}
Blocked Tasks:
{% for task in blocked_tasks %}
{{ make_task(task) }}
{% endfor %}
+ {% endif %}
+ {% if complete_tasks %}
Complete Tasks:
{% for task in complete_tasks %}
{{ make_task(task) }}
{% endfor %}
+ {% endif %}
{% endblock %}
\ No newline at end of file