2026-01-27 13:48:59 -05:00
|
|
|
{% extends "core/base.html" %}
|
2026-03-04 00:07:10 -05:00
|
|
|
{% load lyric_extras %}
|
2026-01-27 13:48:59 -05:00
|
|
|
|
|
|
|
|
{% block title_text %}Start a new to-do list{% endblock title_text %}
|
|
|
|
|
{% block header_text %}Start a new to-do list{% endblock header_text %}
|
|
|
|
|
|
2026-02-08 21:43:58 -05:00
|
|
|
{% block extra_header %}
|
|
|
|
|
{% url "new_list" as form_action %}
|
|
|
|
|
{% include "apps/dashboard/_partials/_form.html" with form=form form_action=form_action %}
|
|
|
|
|
{% endblock extra_header %}
|
|
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
{% include "apps/dashboard/_partials/_scripts.html" %}
|
|
|
|
|
{% endblock scripts %}
|
2026-03-02 13:57:03 -05:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% if user.is_authenticated %}
|
2026-03-05 16:08:40 -05:00
|
|
|
<button
|
|
|
|
|
id="id_dash_gear"
|
|
|
|
|
onclick="document.getElementById('id_applet_menu').style.display='block'"
|
|
|
|
|
>
|
|
|
|
|
⚙
|
|
|
|
|
</button>
|
|
|
|
|
{% include "apps/dashboard/_partials/_applets.html" %}
|
2026-03-02 13:57:03 -05:00
|
|
|
{% endif %}
|
|
|
|
|
{% endblock content %}
|