From 9023f1ce6142db1b20680928ddaf859607664786 Mon Sep 17 00:00:00 2001 From: Jonathan S Berry Date: Mon, 11 Dec 2023 10:39:45 +0000 Subject: [PATCH] ADX-949 Add the validation_status and validation_timestamp into the resource form submission --- .../scheming/package/snippets/resource_form.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ckanext/validation/templates/scheming/package/snippets/resource_form.html diff --git a/ckanext/validation/templates/scheming/package/snippets/resource_form.html b/ckanext/validation/templates/scheming/package/snippets/resource_form.html new file mode 100644 index 00000000..b19e7ec7 --- /dev/null +++ b/ckanext/validation/templates/scheming/package/snippets/resource_form.html @@ -0,0 +1,15 @@ +{% ckan_extends %} + +{% block basic_fields %} + +{{ super() }} + +{% if data.get('validation_timestamp') %} + +{% endif %} + +{% if data.get('validation_status') %} + +{% endif %} + +{% endblock %}