{% extends "base.html" %} {% block title %}{{ assignment.name }}{% endblock %} {% block path %}→ assignments{{ assignment.name }}{% endblock %} {% block includes %} {% endblock %} {% block content %} {% if not assignment.due_cutoff or now < assignment.due_cutoff %}

Upload a Submission

{{ simple_archive_form.hidden_tag() }}
Select one of more files to include in your submission below. Click Add More Files if you need to include more than 3 files (Javascript must be enabled for this to work).
{% for i in simple_archive_form.archive.entries %}
{{ i(class_ = "simple_file_input") }}
{% endfor %}
{% else %}
{% autoescape false %} No more submissions will be accepted (cutoff was {{ create_time_element(assignment.due_cutoff) }}). {% endautoescape %}
{% endif %}
{% for submission in submissions %} {% if submission.id in new_submissions %}
{% else %}
{% endif %}

Submission on {{ submission.timestamp_pretty }}

{% if submission.uploaded_filenames %}
    {% for i in submission.uploaded_filenames %}
  • {{ i }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}