{% extends "core/base.html" %} {% block title_text %}Start a new to-do list{% endblock title_text %} {% block header_text %}Start a new to-do list{% endblock header_text %} {% 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 %} {% block content %} {% if user.is_authenticated %}
{% for theme in themes %}
{% if not theme.locked %}
{% csrf_token %}
{% else %} × {% endif %}
{% endfor %}
{% endif %} {% endblock content %}