X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/2f9c60b76f3ab4e69d794a6bb14388a81ff29eb7..3263fb5558f69c727e61a6d4c0b3575a0f081ef6:/apps/catalogue/templates/catalogue/document_create_missing.html diff --git a/apps/catalogue/templates/catalogue/document_create_missing.html b/apps/catalogue/templates/catalogue/document_create_missing.html index dcb61752..f86ce94b 100644 --- a/apps/catalogue/templates/catalogue/document_create_missing.html +++ b/apps/catalogue/templates/catalogue/document_create_missing.html @@ -1,14 +1,53 @@ {% extends "catalogue/base.html" %} {% load i18n %} -{% block leftcolumn %} -
+{% block inner_content %} +

{% trans "Create a new resource" %}

+ + + {% csrf_token %} - {{ form.as_p }} + {{ form.non_field_errors }} + + {{ form.owner_organization.errors }} + + + {{ form.title.errors }} + + + {{ form.cover.errors }} + {{ form.cover }} + + {{ form.publisher.errors }} + + + {% for tag_form in tag_forms %} + {% for tag_field in tag_form %} + + {{ tag_field.errors }} + {{ tag_field }} +
+ {% endfor %} + {% endfor %} + + + {{ form.description.errors }} + -

-
-{% endblock leftcolumn %} + + -{% block rightcolumn %} -{% endblock rightcolumn %} +{% endblock %}