{% extends 'base/base.html' %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block body %} {{ icon_defs(list_template.icon) }}
{% trans list_type=list_template.name %} You're about to create a new list ({{list_type}}). {% endtrans %}
{% call form.form(class="form--paper form__panel--vertical") %} {{ field.text("name", _("name of the list"), required=true) }}
{%- trans notrimmed -%} Private lists are only visible by yourself (and people you invite later). Public lists can be accessed by anybody. {%- endtrans -%}
{{ field.choices("access", (("private", _("private")), ("public", _("public"))), checked="private") }}
{{ field.submit(_("Create list")) }} {% endcall %}
{% endblock body %}