moviewyrm/bookwyrm/templates/lists/edit_form.html
2021-02-03 12:25:33 -08:00

12 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 %}