2ed6d629c5b9f0ad642fa5f52e450a7fd4849d5f
[edumed.git] / stage2 / templates / stage2 / participant.html
1 {% extends 'base.html' %}
2 {% load textile_pl from fnp_markup %}
3 {% load chunks %}
4
5 {% block title %}Drugi etap{% endblock %}
6
7 {% block body %}
8   <h1>Drugi etap Olimpiady Cyfrowej</h1>
9
10   {% chunk 'stage2_header' %}
11
12   {% for assignment in assignments %}
13     <h2>{{ assignment.title }} (do {{ assignment.deadline }})</h2>
14     <a href="{{ assignment.content_url }}"><strong>Zobacz treść zadania</strong></a>
15     <form method="POST" action="" enctype="multipart/form-data">
16       {% csrf_token %}
17       {% for form in assignment.field_forms %}
18         {{ form.assignment_id }}
19         <p><strong>{{ form.value.label }}:</strong></p>
20         {{ form.value.errors }}
21         <p>
22           {% if assignment.is_active %}{{ form.value }}{% else %}{{ form.value.initial }}{% endif %}
23         </p>
24       {% endfor %}
25       {% for form, attachment in assignment.attachment_forms %}
26         {{ form.assignment_id }}
27         <p><strong>{{ form.file.label }}:</strong></p>
28         <p>
29           {% if assignment.is_active %}{{ form.file }}{% endif %}
30           {% if attachment.file %}
31             <a href="{{ attachment.download_url }}">{{ attachment.filename }}</a>
32             ({{ attachment.file.size|filesizeformat }})
33           {% else %}
34             (nie wysłano pliku)
35           {% endif %}
36         </p>
37       {% endfor %}
38       {% if assignment.is_active %}<input type="submit" value="Wyślij"/>{% endif %}
39     </form>
40   {% endfor %}
41
42
43 {% endblock %}