{% 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 %} {% if assignment.attachment_is_tested or assignment.max_authors > 1 %}

Please note:

{% if assignment.attachment_is_tested %} Your upload is automatically tested for validity. You can find further information in the assignment description. {% if assignment.test_machines.all %} The following test machines will be used for this assignment:
    {% for machine in assignment.test_machines.all %}
  • {{ machine }}
  • {% endfor %}
{% endif %} {% endif %} {% if assignment.max_authors > 1 %}
A maximum of {{ assignment.max_authors }} author(s) is allowed. You are added automatically. {% endif %}
{% endif %}
{% csrf_token %} {{ submissionForm|bootstrap }}
{% endblock %}