You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

{% extends 'base.html' %}
{% load static %}
{% block content %}
<h1 class="text-3xl font-bold text-center my-2">Tasks</h1>
<div class="flex flex-col">
{% for task in tasks %}
{% include "partials/task_item.html" %}
{% endfor %}
</div>
{% endblock %}