{% extends "buckeyebrowser/index.html" %} {% block content %}

Redo formant tracking

Current settings

Ceiling: {{ output.Ceiling }}
Number of Formants: {{ output.NFormants }}
Sound file for manual analysis
{% csrf_token %} {{ form.as_table }}
{% if user.is_superuser %} Change word token details {% endif %}
Preceding context Word Following context
{% for t in output.Preceding %} {{ t }} {% endfor %} {{output.Word}} {% for t in output.Following %} {{ t }} {% endfor %}
{% for key, value in output.Contextual.items %} {% if 'Previous' in key %} {% endif %} {% endfor %}
{{ key }} {{ value }}
{% for key, value in output.Contextual.items %} {% if 'Following' in key %} {% endif %} {% endfor %}
{{ key }} {{ value }}
{% for key, line in output.items %} {% if key != "Contextual" %}

{{ key }} details

{% for linekey, value in line.items %} {% endfor %}
{{ linekey }} {{ value }}
{% endif %} {% endfor %} {% endblock content %}