moviewyrm/bookwyrm/templates/shelf/create_shelf_form.html

14 lines
311 B
HTML
Raw Normal View History

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 %}
2022-03-10 18:49:33 +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">
{% include "shelf/form.html" with editable=True form=create_form %}
2021-02-03 20:36:20 +00:00
</form>
{% endblock %}