Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
16 lines
406 B
4 years ago
|
{% extends "base.html" %}
|
||
4 years ago
|
{% load deadliny %}
|
||
4 years ago
|
|
||
|
{% block content %}
|
||
|
|
||
4 years ago
|
{% for dl, mnozina_reseni in reseni_podle_deadlinu.items %}
|
||
|
<h1>{{ dl.2 | deadline_html }}</h1>
|
||
4 years ago
|
<ul>
|
||
4 years ago
|
{% for obj in mnozina_reseni %}
|
||
3 years ago
|
<li>{{ obj.sum_body }} b za <a href="{% url 'odevzdavatko_detail_reseni' pk=obj.id %}">{{ obj }}</a> ({{ obj.get_forma_display }} {{ obj.cas_doruceni }})
|
||
4 years ago
|
{% endfor %}
|
||
|
</ul>
|
||
4 years ago
|
{% endfor %}
|
||
4 years ago
|
|
||
|
{% endblock %}
|