mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-04-29 05:24:43 +00:00
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 %}
|