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

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

{% with fields_to_list=record.get_cached_data_fields %}

{{ record.get_cached_data_html | safe }}

{% if fields_to_list %}
{% for field_data in fields_to_list %} {% endfor %}
{{ field_data.title }}{{ field_data.value }}
{% endif %} {% if record.cached_jsonschema_validation_errors or record.cached_exists %}
{% if record.cached_jsonschema_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 %}

JSON Validation passed

{% endif %}
{% endif %}
{% endwith %} {% if json_schema_available %}

Edit

{% endif %} {% if download_form_available %}

Download as Spreadsheet

Import Spreadsheet

{% endif %}

Moderate

Events

{% endblock %}