{% extends "base.html" %} {% set active = 'datasets' %} {% block content %} {% set rid = record.id | string %}

Record {{ rid[:8] }}…

Schema: {{ record.schema_name }}  ·  Full ID: {{ rid }}

Created: {{ record.created_at.strftime('%Y-%m-%d %H:%M UTC') }}

{% if fields %} {% endif %}
{% for k, v in record.data.items() %} {% endfor %}
FieldValue
{{ k }} {% if v is mapping and v.sha256 is defined %} {{ v.filename }}  ({{ v.size }} bytes, sha256: {{ v.sha256[:12] }}…)  Download {% else %} {{ v }} {% endif %}
{% if fields %}

Edit record {{ rid[:8] }}…

{% for rf in fields %} {% set f = rf.field %} {% set current = record.data.get(f.name) %} {% endfor %}
{% endif %} {% endblock %}