moviewyrm/bookwyrm/templates/lists/create_form.html

12 lines
239 B
HTML
Raw Normal View History

2021-02-03 20:25:33 +00:00
{% extends 'components/inline_form.html' %}
{% block header %}
Create List
{% endblock %}
{% block form %}
<form name="create-list" method="post" action="{% url 'lists' %}">
{% include 'lists/form.html' %}
</form>
{% endblock %}