forked from mirrors/bookwyrm
11 lines
239 B
HTML
11 lines
239 B
HTML
{% 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 %}
|