moviewyrm/bookwyrm/templates/lists/create_form.html
2021-02-27 18:48:10 -08:00

13 lines
269 B
HTML

{% 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' %}
</form>
{% endblock %}