{% extends 'jsondataferret/base.html' %} {% block content %}

Type {{ type.title }} record {{ record.public_id }}

JSON

{{ record.get_cached_data_html | safe }}

{% with fields_to_list=record.get_cached_data_fields %} {% if fields_to_list %}

Fields

{% for field_data in fields_to_list %} {% endfor %}
{{ field_data.title }}{{ field_data.value }}
{% endif %} {% endwith %} {% if record.cached_jsonschema_validation_errors or record.cached_exists %}

Validation

{% if record.cached_jsonschema_validation_errors %}

There were validation errors:

{% for err in record.cached_jsonschema_validation_errors %} {% endfor %}
Message Data Path Schema Path
{{ err.message }} {{ err.path_str }} {{ err.schema_path_str }}
{% else %}

Validation passed

{% endif %} {% endif %} {% if download_form_available %}

Download as Spreadsheet

Import Spreadsheet

{% endif %}

Moderate

Events

{% endblock %}