forked from mirrors/bookwyrm
11 lines
238 B
HTML
11 lines
238 B
HTML
{% extends 'components/inline_form.html' %}
|
|
|
|
{% block header %}
|
|
Edit List
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
<form name="edit-list" method="post" action="{% url 'list' list.id %}">
|
|
{% include 'lists/form.html' %}
|
|
</form>
|
|
{% endblock %}
|