most of stage 2
[edumed.git] / stage2 / templates / stage2 / participant.html
1 {% extends 'base.html' %}
2 {% load textile_pl from fnp_markup %}
3
4 {% block title %}Drugi etap{% endblock %}
5
6 {% block body %}
7   <h1>Drugi etap Olimpiady Cyfrowej</h1>
8
9   {% for assignment in assignments %}
10     <h2>{{ assignment.title }} (do {{ assignment.deadline }})</h2>
11     <p>{{ assignment.content|textile_pl }}</p>
12     <form method="POST" action="{% url 'stage2_upload' assignment.id participant.id participant.key %}"
13           enctype="multipart/form-data">
14       {% csrf_token %}
15       {% for form, attachment in assignment.forms %}
16         <p><strong>{{ form.file.label }}:</strong></p>
17         <p>
18           {% if assignment.is_active %}{{ form.file }}{% endif %}
19           {% if attachment.file %}
20             <a href="{{ attachment.download_url }}">{{ attachment.filename }}</a>
21             ({{ attachment.file.size|filesizeformat }})
22           {% else %}
23             (nie wysłano pliku)
24           {% endif %}
25         </p>
26       {% endfor %}
27       <input type="submit" value="Wyślij"/>
28     </form>
29   {% endfor %}
30
31
32 {% endblock %}