5 changed files with 1 additions and 110 deletions
@ -1,33 +0,0 @@ |
|||
{% extends "base.html" %} |
|||
|
|||
{% block content %} |
|||
<h1> |
|||
{% block nadpis1a %} |
|||
Obálkování {{ cislo }} |
|||
{% endblock %} |
|||
</h1> |
|||
|
|||
Obálkovat se budou tyto problémy: |
|||
<ul> |
|||
{% for p in problemy %} |
|||
|
|||
<li> {{ p.kod_v_rocniku }} {{ p }} |
|||
{% endfor %} |
|||
</ul> |
|||
|
|||
{% for r in reseni %} |
|||
{% ifchanged r.resitel %} |
|||
{% if not forloop.first %} |
|||
</ul> |
|||
{% endif %} |
|||
<h4>{{ r.resitel }}</h4> |
|||
<ul> |
|||
{% endifchanged %} |
|||
|
|||
<li> |
|||
{{ r.problem.kod_v_rocniku }} {{ r.problem.nazev }} ({{ r.body }}) |
|||
|
|||
{% endfor %} |
|||
</ul> |
|||
|
|||
{% endblock content %} |
@ -1,30 +0,0 @@ |
|||
{% extends "base.html" %} |
|||
|
|||
{% block content %} |
|||
<h1> |
|||
{% block nadpis1a %} |
|||
Obálkování {{ cislo }} |
|||
{% endblock %} |
|||
</h1> |
|||
<ul> |
|||
{% for reseni in object_list %} |
|||
{% ifchanged reseni.resitele %} |
|||
{% if not forloop.first %} |
|||
</ul> |
|||
{% endif %} |
|||
<h4>{% for resitel in reseni.resitele.all %}{{resitel.osoba}},{% endfor %}</h4> |
|||
<ul> |
|||
{% endifchanged %} |
|||
|
|||
<li>Celkem {{reseni.hodnoceni__body__sum}} bodů z {{reseni.hodnoceni__count}} hodnocení |
|||
<ul> |
|||
{% for h in reseni.hodnoceni_set.all %} |
|||
<li> {{ h.problem }}: {{ h.body }}b </li> |
|||
{% endfor %} |
|||
</ul> |
|||
</li> |
|||
{% endfor %} |
|||
</ul> |
|||
|
|||
|
|||
{% endblock content %} |
Loading…
Reference in new issue