forked from mirrors/bookwyrm
12 lines
269 B
HTML
12 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 %}
|