{% extends "base.html" %}
{% block head %}
{{ super() }}
{% endblock %}
{% block title %}Sandbox{% endblock %}
{% block content %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ category }}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Sandbox
You can either edit and save the code in the left column or upload the files in the right column. You can also import code from other submissions when the leaderboard links are open.
Edit your submission
Upload your files!
File list
{% for f in submission_names %}
{{ f }}
{% endfor %}
Upload file
{% endblock %}
{% block scripts %}
{% for name_code in code_form.names_codes %}
{% endfor %}
{% endblock %}