open_ended_feedback.html 457 Bytes
Newer Older
1 2 3 4
<section>
    <header>Feedback</header>
    <div class="shortform">
        <div class="result-output">
5 6 7 8
            <p>Score: {{score}}</p>
            {% if grader_type == "ML" %}
                <p>Check below for full feedback:</p>
            {% endif %}
9 10 11 12
        </div>
    </div>
    <div class="longform">
        <div class="result-output">
13
            {% autoescape off %} {{feedback |safe }} {% endautoescape %}
14 15 16
        </div>
    </div>
</section>