Skip to content
Snippets Groups Projects
Select Git revision
  • 864fc3a22e3a1b57079e100f74159d41be9a4e12
  • jk default protected
2 results

osdd.c

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 %}