{% load i18n %}

{{display_name}}

{% if max_score > 0 %} {% blocktrans count counter=score_weighted %} {{score_weighted}}/{{max_score}} point (graded) {% plural %} {{score_weighted}}/{{max_score}} points (graded) {% endblocktrans %} {% else %} {% trans '0 points (ungraded)' %} {% endif %}

{{prompt}}

{% trans 'Note:' %} {% trans 'Your queries are executed using SQLite, so you must conform to the SQL constructs supported by SQLite.' %}
{% trans 'Press ESC then TAB or click outside of the code editor to exit' %}

{% if raw_response %} {% if score %} {% trans 'Correct' %} {% else %} {% trans 'Incorrect' %} {% endif %} {% else %} {% trans 'Unanswered' %} {% endif %}

{% if verify_query %}
{% trans 'To check your data modification statement, we ran the following query after your modification:' %} {% if modification_query %}
            {{ modification_query }}
          
{% endif %}
            {{ verify_query }}
          
{% endif %}
{% trans 'Your Query Result:' %}
{% trans 'Expected Query Result:' %}