2021-02-03 20:36:20 +00:00
|
|
|
{% extends 'components/inline_form.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-02-03 20:36:20 +00:00
|
|
|
|
|
|
|
{% block header %}
|
2021-03-02 18:46:08 +00:00
|
|
|
{% trans "Create Shelf" %}
|
2021-02-03 20:36:20 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block form %}
|
|
|
|
<form name="create-shelf" action="{% url 'shelf-create' %}" method="post">
|
2021-10-03 08:41:38 +00:00
|
|
|
{% include "shelf/form.html" with editable=True form=create_form %}
|
2021-02-03 20:36:20 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|