{% extends 'base.html' %} {% block title %}Exploring File: {{ filename }}{% endblock %} {% block content %}

Exploring RVTools File

This page will display data from the uploaded file: {{ filename }}

{% for sheet_name, rows in sheets.items() %}
{% if rows %} {% for col in rows[0].keys() %} {% endfor %} {% for row in rows %} {% for cell in row.values() %} {% endfor %} {% endfor %}
{{ col }}
{{ cell }}
{% else %}

No data available in this sheet.

{% endif %}
{% endfor %}
{% endblock %}