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.

17 lines
433 B

{% extends 'base.html' %}
{% load static %}
{% block content %}
<h1 class="text-3xl font-bold text-center my-2">Tasks</h1>
<button type="button" hx-get="{% url 'tasks:create-task-form' %}" hx-target="#task-items" hx-swap="beforeend">
Add a new task
</button>
<div id="task-items" class="flex flex-col">
{% for task in tasks %}
{% include "partials/task_item.html" %}
{% endfor %}
</div>
{% endblock %}