{% load lyric_extras %}
{% for entry in applets %} {% if entry.visible %} {% if entry.applet.slug == "new-list" %}

Start a new to-do list

{% url "new_list" as form_action %} {% include "apps/dashboard/_partials/_form.html" with form=form form_action=form_action %}
{% elif entry.applet.slug == "my-lists" %}
My lists:
    {% for list in recent_lists %}
  • {{ list.name }}
  • {% empty %}
  • No lists yet.
  • {% endfor %}
{% elif entry.applet.slug == "username" %}
{% csrf_token %}
@
{% elif entry.applet.slug == "palette" %}
{% for palette in palettes %}
{% if not palette.locked %}
{% csrf_token %}
{% else %} × {% endif %}
{% endfor %}
{% endif %} {% endif %} {% endfor %}