forked from mirrors/bookwyrm
13 lines
335 B
HTML
13 lines
335 B
HTML
{% extends 'components/inline_form.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block header %}
|
|
{% trans "Edit List" %}
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
<form name="edit-list" method="post" action="{% url 'list' list.id %}">
|
|
{% include 'lists/form.html' %}
|
|
</form>
|
|
{% include "lists/delete_list_modal.html" with id="delete_list" %}
|
|
{% endblock %}
|