{% extends "base.html" %} {% block nav_title %} {{ grady_says }} {% endblock nav_title %} {% block title %} Editing feedback {% endblock %} {% load staticfiles %} {% block body_block %}

{{feedback.of_submission.type.name}}

{{feedback.of_submission.text}}
{# Custom feedback seems too complicated #}
Custom Feedback
{{feedback.of_submission.pre_corrections}}
{% include "core/feedback_card.html" with unique="1" header="Description" content=feedback.of_submission.type.task_description expanded="hide" %} {% include "core/feedback_card.html" with unique="2" header="Solution" content=feedback.of_submission.type.possible_solution expanded="hide" %} {% include "core/feedback_card.html" with unique="3" header="Correction Guideline" content=feedback.of_submission.type.correction_guideline expanded="hide" %}

Please provide your feedback

{{feedback.text}}
{% csrf_token %} {% for field in form %} {% if field.name == "score" %}
Score:
{% if not feedback.final %} Delete {% else %} {% endif %}
{% else %}
{{ field }}
{% endif %} {% endfor %}
{# This is where all the messages pop up #} {% include "core/message_box.html" %}
{% endblock %} {% block script_block %} {% endblock script_block %}