forked from mirrors/bookwyrm
13 lines
311 B
HTML
13 lines
311 B
HTML
{% extends 'components/inline_form.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block header %}
|
|
{% trans "Create shelf" %}
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
<form name="create-shelf" action="{% url 'shelf-create' %}" method="post">
|
|
{% include "shelf/form.html" with editable=True form=create_form %}
|
|
</form>
|
|
{% endblock %}
|
|
|