Matěj Kocián
9 years ago
5 changed files with 112 additions and 70 deletions
@ -0,0 +1,31 @@ |
|||||
|
<table class='vysledkovka'> |
||||
|
<tr class='border-b'> |
||||
|
<th class='border-r'># |
||||
|
<th class='border-r'>Jméno |
||||
|
<th class='border-r'>R. |
||||
|
<th class='border-r'>Odjakživa |
||||
|
{% for c in rocnik.verejna_cisla %} |
||||
|
{% if c.verejna_vysledkovka %} |
||||
|
<th class='border-r'><a href="{{ c.verejne_url }}"> |
||||
|
{{c.rocnik.rocnik}}.{{ c.cislo }}</a> |
||||
|
{% endif %} |
||||
|
{% endfor %} |
||||
|
<th class='border-r'>Celkem |
||||
|
|
||||
|
{% for rv in vysledkovka %} |
||||
|
<tr> |
||||
|
<td class='border-r'>{% autoescape off %}{{ rv.poradi }}{% endautoescape %} |
||||
|
<th class='border-r'> |
||||
|
{% if rv.titul %} |
||||
|
{{ rv.titul }}<sup>MM</sup> |
||||
|
{% endif %} |
||||
|
{{ rv.resitel.plne_jmeno }} |
||||
|
<td class='border-r'>{{ rv.resitel.rocnik }} |
||||
|
<td class='border-r'>{{ rv.body_odjakziva }} |
||||
|
{% for b in rv.body_cisla %} |
||||
|
<td class='border-r'>{{ b }} |
||||
|
{% endfor %} |
||||
|
<td class='border-r'><b>{{ rv.body_rocnik }}</b> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</table> |
@ -0,0 +1,19 @@ |
|||||
|
{% extends "seminar/zadani/base.html" %} |
||||
|
|
||||
|
{% block submenu %} |
||||
|
{% with "vysledkova-listina" as selected %} |
||||
|
{% include 'seminar/zadani/submenu.html' %} |
||||
|
{% endwith %} |
||||
|
{% endblock submenu %} |
||||
|
|
||||
|
|
||||
|
{% block content %} |
||||
|
{% with nastaveni.aktualni_rocnik as rocnik %} |
||||
|
<h2>Výsledky</h2> |
||||
|
{% if vysledkovka %} |
||||
|
{% include "seminar/vysledkovka_rocnik.html" %} |
||||
|
{% else %} |
||||
|
V tomto ročníku zatím žádné výsledky nejsou |
||||
|
{% endif %} |
||||
|
{% endwith %} |
||||
|
{% endblock content %} |
Loading…
Reference in new issue