{% extends "base.html" %} {% set active = 'datasets' %} {% block content %}
Schema: {{ dataset.schema_name }} · {{ dataset.record_count }} records {% if dataset.description %} · {{ dataset.description }}{% endif %}
| ID | {% for f in field_names %}{{ f }} | {% endfor %}Created | |
|---|---|---|---|
{{ rid[:8] }}… |
{% for f in field_names %}
{% set v = r.data.get(f, '') %}
{% if v is mapping and 'sha256' in v %} {{ v.filename }} ({{ v.size }}b) {% else %} {{ v }} {% endif %} | {% endfor %}{{ r.created_at.strftime('%Y-%m-%d') }} |
No records yet.
{% endif %} {% endblock %}