{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %}Submission code{% endblock %} {% block content %}
{{ event.problem.title }}, {{ event.title }}
{% if event.is_competitive and submission.team.admin == current_user %}
{% if submission.is_in_competition %} By default, all your submissions enter the competition, and the one with the highest public leaderboard score will become your official entry. If you don't want that this submission becomes a candidate, pull it out by pressing the button. Pull out this submission from the competition {% else %} At this time, this submission is not a candidate in the official competition. You can re-enter it into the competition by pushing this button.
Enter this submission into the competition
{% endif %}
{% endif %}
team = {{ submission.team.name }}
submission = {{ submission.name }}
file = {{ f_name }}
Click here to assess and assign credit for this submission (quantify where it comes from).
{{ code }}
File List
{% if submission.f_names and f_name != 'error.txt' %} {% for f in submission.f_names %} {% if f==f_name %}
{{f}}
{% else %} {% endif %} {% endfor %} {% endif %}
Import it to my sandbox

Be careful: this will overwrite any unsubmitted changes (even changes that you have saved but not yet submitted) in your sandbox.

{{ import_form.hidden_tag() }} {{ import_form.selected_f_names }}
Download all
{% endblock %}