13 lines
272 B
HTML
13 lines
272 B
HTML
{% 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 %}
|