{% extends "base.html" %} {% block title %}{{ item_id }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block body %}

{{ item_id }} - {{ type.id }}

{% for field_id, field in type.fields.items() %} {% endfor %}
{{ field.title() }} {% if field.type() == 'url' %} {{ datastore.get_field(type.id, item_id, field_id) }} {% else %} {{ datastore.get_field(type.id, item_id, field_id) }} {% endif %}
{% if item_data.json_schema_validation_errors or item_data.json_schema_validation_pass %}

Validation

{% if item_data.json_schema_validation_errors %}

There were validation errors:

{% for err in item_data.json_schema_validation_errors %} {% endfor %}
Message Data Path Schema Path
{{ err.message }} {{ err.path_str }} {{ err.schema_path_str }}
{% endif %} {% if item_data.json_schema_validation_pass %}

Validation passed

{% endif %} {% endif %} {% if type.json_schema or type.guide_form_xlsx or site_github_url %}

Edit

{% if type.json_schema %} {% endif %} {% if type.guide_form_xlsx %} {% endif %} {% if site_github_url %} {% endif %}

{% endif %}

Raw Data

{{ record_data_html|safe }}

{% if site_github_url %} {% endif %}

{% endblock %}