17 lines
433 B
HTML
17 lines
433 B
HTML
{% 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 %}
|