27 lines
688 B
HTML
27 lines
688 B
HTML
<div
|
|
class="card bg-base-100 shadow-xl w-1/3"
|
|
x-data="{
|
|
creating: false,
|
|
}"
|
|
>
|
|
<div class="card-body">
|
|
<div class="flex justify-between items-center mb-4">
|
|
<h2 class="card-title text-2xl font-medium">Listado de tareas</h2>
|
|
|
|
<button type="button" class="btn btn-primary" @click="creating = true">
|
|
Nueva tarea
|
|
</button>
|
|
</div>
|
|
|
|
<div x-show="creating" class="w-full pb-4">
|
|
{{ template "fragments/todo-row-form" .}}
|
|
</div>
|
|
|
|
<ol id="todo-list-body" class="space-y-3">
|
|
{{ range .Todo }} {{ template "fragments/todo-row" . }} {{ end }}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "fragments/inspector" (dict "Data" . "Depth" 0) }}
|