bookwyrm-mastodon/bookwyrm/templates/lists/edit_form.html

14 lines
367 B
HTML
Raw Normal View History

2021-02-03 15:25:33 -05:00
{% extends 'components/inline_form.html' %}
2021-02-27 21:48:10 -05:00
{% load i18n %}
2021-02-03 15:25:33 -05:00
{% block header %}
2021-02-27 21:48:10 -05:00
{% trans "Edit List" %}
2021-02-03 15:25:33 -05:00
{% endblock %}
{% block form %}
<form name="edit-list" method="post" action="{% url 'list' list.id %}">
{% include 'lists/form.html' %}
</form>
2021-09-06 13:03:00 -04:00
{% include "lists/delete_list_modal.html" with controls_text="delete_list" controls_uid=list.id %}
2021-02-03 15:25:33 -05:00
{% endblock %}