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 %}
{{ col }} |
{% endfor %}
{% for row in original_data.itertuples() %}
{% for col in row[1:] %}
{{ col }} |
{% endfor %}
{% endfor %}
Updated Gesture Data
{% for col in updated_data.columns %}
{{ col }} |
{% endfor %}
{% for row in updated_data.itertuples() %}
{% for col in row[1:] %}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}