{% extends 'base.html' %} {% load textile_pl from fnp_markup %} {% block title %}Drugi etap{% endblock %} {% block body %}

Drugi etap Olimpiady Cyfrowej

{% for assignment in assignments %}

{{ assignment.title }} (do {{ assignment.deadline }})

{{ assignment.content|textile_pl }}

{% csrf_token %} {% for form, attachment in assignment.forms %}

{{ form.file.label }}:

{% if assignment.is_active %}{{ form.file }}{% endif %} {% if attachment.file %} {{ attachment.filename }} ({{ attachment.file.size|filesizeformat }}) {% else %} (nie wysłano pliku) {% endif %}

{% endfor %}
{% endfor %} {% endblock %}