{% load i18n %} {{ prompt_html|safe }} {% if show_setup_code or show_test_code %}

{# Translators: Grading code is the python code to determing the grades for code questions. #} {% trans "Grading code" %} {% trans "(click to view)" %}

{% if show_setup_code and setup_code %} {# Translators: "set-up" stands for set-up code for code question #} {% trans "Set-up:" %}
{{ setup_code }}
{% endif %} {% if show_test_code and test_code %} {% trans "Grading" %}
{{ test_code }}
{% endif %}
{% endif %} {% if initial_code %}

{# Translators: starter code for code question #} {% trans "Starter code" %} {% trans "(click to view)" %}

{{ initial_code }}
{% endif %}