forked from mirrors/bookwyrm
ebf463fc91
- TODO: redirect to correct slug if not found.
13 lines
366 B
HTML
13 lines
366 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=list.id slug=list.name|slugify %}">
|
|
{% include 'lists/form.html' %}
|
|
</form>
|
|
{% include "lists/delete_list_modal.html" with id="delete_list" %}
|
|
{% endblock %}
|