{% extends "resource-new.html" %} {% block title %} New mailing list - {{project.name}} {% endblock %} {% block content %}
{# TODO: Hide this option for any projects which already have lists #}
{{csrf_token()}}

Use a common template

{{csrf_token()}}

Or create a new mailing list

{{ valid.summary("name") }}
{{valid.summary("description")}}
{% if any(lists) or search %}

Or add an existing mailing list

{# TODO: Pagination #}
{{csrf_token()}} {% if search_error %}
{{ search_error }}
{% endif %}
{{csrf_token()}} {% for list in lists %}

{% if list["id"] in existing %} {% else %} {% endif %} {{ list["name"] }}

{% endfor %}
{% endif %} {% endblock %}