Skip to content

Commit

Permalink
ADX-949 Add the validation_status and validation_timestamp into the r…
Browse files Browse the repository at this point in the history
…esource form submission
  • Loading branch information
jonathansberry committed Dec 11, 2023
1 parent f5421bc commit 9023f1c
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{% ckan_extends %}

{% block basic_fields %}

{{ super() }}

{% if data.get('validation_timestamp') %}
<input type="hidden" name="validation_timestamp" value="{{data.validation_timestamp}}" />
{% endif %}

{% if data.get('validation_status') %}
<input type="hidden" name="validation_status" value="{{data.validation_status}}" />
{% endif %}

{% endblock %}

0 comments on commit 9023f1c

Please sign in to comment.