Skip to content
Snippets Groups Projects
Select Git revision
  • 77c64d6fee01040450a7a603f5ecb8185932e3c0
  • 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

mo-logo.epdf

Blame
  • org_contest_add_user.html 619 B
    {% extends "base.html" %}
    {% import "bootstrap/wtf.html" as wtf %}
    {% set round = contest.round %}
    {% set site_id = site.place_id if site else None %}
    
    {% block title %}
    {{ round.round_code() }}: Přidat účastníka {% if site %}do soutěžního místa {{ site.name }}{% else %}do oblasti {{ contest.place.name }}{% endif %}
    {% endblock %}
    {% block breadcrumbs %}
    {{ contest_breadcrumbs(round=round, contest=contest, site=site, action="Přidat účastníka") }}
    {% endblock %}
    
    {% block body %}
    
    {% if errs %}
    {% endif %}
    
    {{ wtf.quick_form(form, form_type='simple', button_map={'save': 'primary'}) }}
    
    {% endblock %}