Edit CSV via Speech - Gesture Data Overview

{% if original_data is not none and updated_data is not none %}

Original Gesture Data

{% for col in original_data.columns %} {% endfor %} {% for row in original_data.itertuples() %} {% for col in row[1:] %} {% endfor %} {% endfor %}
{{ col }}
{{ col }}

Updated Gesture Data

{% for col in updated_data.columns %} {% endfor %} {% for row in updated_data.itertuples() %} {% for col in row[1:] %} {% endfor %} {% endfor %}
{{ col }}
{{ col }}
{% endif %}