{% extends "base.html" %} {% block content %}
Upload Data File
Data Files
{% if files %}
    {% for f in files %}
  • {{ f.name }} {{ f.size_kb }} KB
  • {% endfor %}
{% else %}

No files in data/raw/

{% endif %}
Data Profile
{% if profile %}
Rows{{ profile.row_count }}
Columns{{ profile.column_count }}
Data types{{ profile.data_types | join(", ") }}
{% for col, dtype in profile.columns.items() %} {% endfor %}
ColumnTypeNulls
{{ col }} {{ dtype }} {{ profile.nulls.get(col, 0) }}
{% else %}

No profile yet — run the profile step first.

{% endif %}
{% endblock %}