{% load i18n %} {{ prompt_html|safe }} {% if show_setup_code and setup_code%}

{# Translators: "set-up" stands for set-up code for code question #} {% trans "Problem set-up code" %} {% trans "(click to view)" %}

{% blocktrans trimmed %} This is the code that is used to set up the problem and produce test data for your submission. It is reproduced here for your information, or if you would like to run your submission outside of {{ relate_site_name }}. You should not copy/paste this code into the code box below. This code is run automatically 'behind the scenes' before your submitted code. {% endblocktrans%}

{{ setup_code }}
{% endif %} {% if show_test_code and test_code %}

{% trans "Testing code" %} {% trans "(click to view)" %}

{% blocktrans trimmed %} This is the code that is used to generate feedback for your submission. It is reproduced here for your information, or if you would like to run your submission outside of {{ relate_site_name }}. You should not copy/paste this code into the code box below. This code is run automatically 'behind the scenes' after your submitted code. {% endblocktrans%}

{{ test_code }}
{% endif %} {% if initial_code %}

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

{{ initial_code }}
{% endif %}