{% extends "base.html" %} {% block title %}{{ filename }} - {{ modelrun.name|default:"Model Run" }} #{{ modelrun.id }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Total Rows: {{ total_rows|floatformat:0 }} {% if is_large %} (showing first 100) {% endif %}
File Size: {{ file_size_mb }} MB
{% if csv_rows %}
{% if csv_rows %} {% with header=csv_rows.0 %} {% for col in header %} {% endfor %} {% for row in csv_rows|slice:"1:" %} {% for cell in row %} {% endfor %} {% endfor %} {% endwith %} {% endif %}
#{{ col }}
{{ forloop.counter }}{{ cell }}
{% if is_large %}
Showing first 100 rows of {{ total_rows|floatformat:0 }} total rows. Download the file to see all data.
{% endif %} {% else %}
This CSV file appears to be empty.
{% endif %}
{% endblock %}