Rename catalogue to documents.
[redakcja.git] / src / documents / templates / documents / document_create_missing.html
diff --git a/src/documents/templates/documents/document_create_missing.html b/src/documents/templates/documents/document_create_missing.html
new file mode 100644 (file)
index 0000000..d003394
--- /dev/null
@@ -0,0 +1,26 @@
+{% extends "documents/base.html" %}
+{% load i18n %}
+{% load bootstrap4 %}
+
+
+{% block titleextra %}{% trans "Create a new book" %}{% endblock %}
+
+
+{% block content %}
+<div class="card">
+       <div class="card-header">
+    <h1>{% trans "Create a new book" %}</h1>
+       </div>
+       <div class="card-body">
+
+
+    <form enctype="multipart/form-data" method="POST">
+    {% csrf_token %}
+        {% bootstrap_form form %}
+       {% buttons %}
+        <button class="btn btn-primary" type="submit">{% trans "Create book" %}</button>
+       {% endbuttons %}
+    </form>
+</div>
+</div>
+{% endblock content %}