bookwyrm-mastodon/bookwyrm/templates/shelf/create_shelf_form.html

14 lines
311 B
HTML
Raw Normal View History

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">
{% include "shelf/form.html" with editable=True form=create_form %}
2021-02-03 15:36:20 -05:00
</form>
{% endblock %}