{% extends 'base.html' %} {% set page = 'feedback' %} {% block content %}
{{ feedback_export_form.hidden_tag() }} {{ feedback_export_form.model.label }} {{ feedback_export_form.model() }} {{ feedback_export_form.correct.label }} {{ feedback_export_form.correct() }} {{ feedback_export_form.incorrect.label }} {{ feedback_export_form.incorrect() }}
{{ parsing_model_form.model() }}
{% if stats['absolute']['unparsed'] %}

There are {{ stats['absolute']['unparsed'] }} unparsed queries.

{% endif %}
{% for type in stats['absolute'] %} {% endfor %}
Type Count Percentage
{{ type }} {{ stats['absolute'][type] }} {{ '%.2f' | format(stats['relative'][type]) }}

Accuracy: {{ '%.2f' | format(stats['accuracy']) }}

{% if tag_plot_b64 %} Plot of tag percentages {% endif %} {% if tag_count_stats %} {% for tag_count, instance_count in tag_count_stats.items() %} {% endfor %}
Tags on Feedback Instance Count
{{ tag_count }} {{ instance_count }}
{% endif %}
{% for piece in feedback %}
{% if tag_forms %} {% with tag_form = tag_forms[piece.id] %} {% if tag_form %} {% endif %} {% endwith %} {% endif %} Detail Edit
{% endfor %}
{% endblock %}