{% extends "layouts/base.html" %} {% block title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %} - UdeS team manager{% endblock %} {% block page_title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %}{% endblock %} {% block breadcrumb %} Home / Tryouts {% if tryout %} / {{ tryout.title }} / Edit {% else %} / Create {% endif %} {% endblock %} {% block content %}
Optional. Leave blank for single-day tryout.
{% for coach in coaches %} {% set is_checked = false %} {% if tryout %} {% for c in tryout.coaches %} {% if c.id == coach.id %}{% set is_checked = true %}{% endif %} {% endfor %} {% if tryout.coach_id == coach.id %}{% set is_checked = true %}{% endif %} {% endif %} {% endfor %}
Select one or more coaches for this tryout.
Cancel
{% endblock %}