{% extends 'components/inline_form.html' %}
{% load i18n %}

{% block header %}
{% trans "Create List" %}
{% endblock %}

{% block form %}
<form name="create-list" method="post" action="{% url 'lists' %}">
    {% include 'lists/form.html' with curation_group=group %}
</form>
{% endblock %}