{% extends "base.html" %} {% set round = contest.round %} {% block title %}Výsledky pro {{ round.name|lower }} {{ round.year }}. ročníku kategorie {{ round.category }}: {{ contest.place.name }}{% endblock %} {% block breadcrumbs %}
  • Soutěže
  • {{ round.name }} {{ round.year }}. ročníku kategorie {{ round.category }}: {{ contest.place.name }}
  • Výsledky {% endblock %} {% block body %} {% set b_win = scoretable.score_metadata.get('boundary',{}).get('winner',None) %} {% set b_suc = scoretable.score_metadata.get('boundary',{}).get('successful',None) %} {% set has_hm = scoretable.score_metadata.get('has_hm',False) %} {% if b_suc is not none or b_win is not none %}

    {% if b_suc is not none %} Úspěšným řešitelem se stává každý, kdo získá alespoň {{ b_suc |parse_decimal| inflected("bod", "body", "bodů") }}. {% endif %} {% if b_win is not none %} Vítězem se stává každý, kdo získá alespoň {{ b_win |parse_decimal| inflected("bod", "body", "bodů") }}. {% endif %} {% if has_hm %} Pochvalné uznání získává neúspěšný řešitel, který získal plný počet bodů za alespoň jednu úlohu. {% endif %}

    {% endif %} {% if scoretable.pdf_file %}

    Výsledková listina dostupná též v PDF.

    {% endif %} {% if have_shared_places %}

    Organizátor soutěže může sdílené pořadí dodatečně upřesnit podle dalších kriterií. {% endif %} {{ table.to_html() }} {% if scoretable.score_metadata.get('comment_hack', None) is not none %} {{ scoretable.score_metadata.get('comment_hack')|safe }} {% endif %} {% endblock %}