fixed applet seeding in 0005 migration; many FTs & ITs now require authentication before they pass; New List & My Lists converted to dash applets; home.html offloaded and _applets.html onboarded w. these applets
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-06 21:34:43 -05:00
parent 17ee6c1f08
commit 4c502e40f8
9 changed files with 59 additions and 12 deletions

View File

@@ -24,7 +24,32 @@
{% for entry in applets %}
{% if entry.visible %}
{% if entry.applet.slug == "username" %}
{% if entry.applet.slug == "new-list" %}
<section
id="id_applet_new_list"
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
>
<h2>Start a new to-do list</h2>
{% url "new_list" as form_action %}
{% include "apps/dashboard/_partials/_form.html" with form=form form_action=form_action %}
</section>
{% elif entry.applet.slug == "my-lists" %}
<section
id="id_applet_my_lists"
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
>
{% for list in user.lists.all %}
<li>
<a href="{{ list.get_absolute_url }}">{{ list.name }}</a>
</li>
{% endfor %}
{% for list in user.shared_lists.all %}
<li>
<a href="{{ list.get_absolute_url }}">{{ list.name }}</a>
</li>
{% endfor %}
</section>
{% elif entry.applet.slug == "username" %}
<section
id="id_applet_username"
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"