moviewyrm/bookwyrm/templates/shelf/edit_shelf_form.html

14 lines
335 B
HTML
Raw Normal View History

2021-02-03 20:44:51 +00:00
{% extends 'components/inline_form.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-02-03 20:44:51 +00:00
{% block header %}
2021-02-28 02:48:10 +00:00
{% trans "Edit Shelf" %}
2021-02-03 20:44:51 +00:00
{% endblock %}
{% block form %}
<form name="edit-shelf" action="{{ shelf.local_path }}" method="post">
2021-09-28 23:37:24 +00:00
{% include "shelf/form.html" with editable=shelf.editable form=edit_form privacy=shelf.privacy %}
2021-02-03 20:44:51 +00:00
</form>
{% endblock %}