2021-02-03 15:36:20 -05:00
|
|
|
{% extends 'components/inline_form.html' %}
|
2021-02-27 21:48:10 -05:00
|
|
|
{% load i18n %}
|
2021-02-03 15:36:20 -05:00
|
|
|
|
|
|
|
{% block header %}
|
2022-03-10 13:49:33 -05:00
|
|
|
{% trans "Create shelf" %}
|
2021-02-03 15:36:20 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block form %}
|
|
|
|
<form name="create-shelf" action="{% url 'shelf-create' %}" method="post">
|
2021-10-03 04:41:38 -04:00
|
|
|
{% include "shelf/form.html" with editable=True form=create_form %}
|
2021-02-03 15:36:20 -05:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|