Skip to content
Snippets Groups Projects
Select Git revision
  • 957bee38d355af3690d64be135941786957423f2
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

org_generic_batch_points.html

Blame
  • org_generic_batch_points.html 1.01 KiB
    {% extends "base.html" %}
    {% import "bootstrap/wtf.html" as wtf %}
    
    {% block title %}Dávkové bodování úlohy {{ task.code }} {{ task.name }}{% endblock %}
    {% block breadcrumbs %}
    {{ contest_breadcrumbs(round=round, contest=contest, task=task, action="Dávkové bodování") }}
    {% endblock %}
    
    {% block body %}
    
    {% if warnings %}
    <h3>Varování při importu</h3>
    
    <div class="alert alert-warning" role="alert" style="white-space: pre-line">{{ "" -}}
    {% for e in warnings %}
    {{ e }}
    {% endfor %}
    </div>
    {% endif %}
    
    {% if errs %}
    <h3>Chyby při importu</h3>
    
    <div class="alert alert-danger" role="alert" style="white-space: pre-line">{{ "" -}}
    {% for e in errs %}
    {{ e }}
    {% endfor %}
    </div>
    {% endif %}
    
    <p>Zde si můžete stáhnout bodovací formulář v zadaném formátu a pak ho nahrát zpět
    s vyplněnými body. "<code>?</code>" místo bodů značí dosud neobodované řešení,
    "<code>X</code>" značí řešení neodevzdané.
    
    {{ wtf.quick_form(form, form_type='simple', button_map={'submit': 'primary'}) }}
    
    {% endblock %}