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