moviewyrm/bookwyrm/templates/lists/create_form.html

13 lines
291 B
HTML
Raw Normal View History

2021-02-03 20:25:33 +00:00
{% extends 'components/inline_form.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-02-03 20:25:33 +00:00
{% block header %}
2021-02-28 02:48:10 +00:00
{% trans "Create List" %}
2021-02-03 20:25:33 +00:00
{% endblock %}
{% block form %}
2021-10-16 06:45:39 +00:00
<form name="create-list" method="post" action="{% url 'lists' %}">
{% include 'lists/form.html' with curation_group=group %}
2021-02-03 20:25:33 +00:00
</form>
{% endblock %}