{% extends "base.html" %} {% load bootstrap %} {% block title %} {{ block.super }} - New Submission {% endblock %} {% block docready %} $('#id_authors').multiselect({ enableFiltering: true, enableCaseInsensitiveFiltering: true, }); $('#id_authors').multiselect('select', {{ user.pk }}); {% endblock %} {% block content %}

Please note:

{% if assignment.attachment_is_tested %} Your file attachment is automatically tested for validity. You can find further information in the assignment description.
Invalid submissions are not accepted for grading. You will be informed by eMail.
A valid upload fulfills at least the following conditions:
  • The uploaded file is a TGZ or ZIP archive.
  • {% if assignment.attachment_test_compile %}
  • After unpacking, a 'make' call can be issued to build the sources.
  • {% endif %} {% if assignment.attachment_test_validity %}
  • After successful building, the application can be verified with the test script..
  • {% endif %}
The following test machines will be used for this assignment: The console output and exit code for the compilation / test run is available in the submission details. {% else %} You can find further information in the assignment description. {% endif %} {% if assignment.course.max_authors > 1 %}
A maximum of {{ assignment.course.max_authors }} author(s) is allowed. You are added automatically. {% endif %}
{% csrf_token %} {{ submissionForm|bootstrap }}
{% endblock %}