@@ -30,6 +30,14 @@ <h2 id="schedule">Schedule</h2>
3030 < td class ="col-md-3 "> < a href ="{{ relative_root_path }}{% link setup.md %} "> Setup</ a > </ td >
3131 < td class ="col-md-7 "> Download files required for the lesson</ td >
3232 </ tr >
33+ {% if site.instructor_training %}
34+ < tr >
35+ {% if multiday %}< td class ="col-md-1 "> </ td > {% endif %}
36+ < td class ="{% if multiday %}col-md-1{% else %}col-md-2{% endif %} "> </ td >
37+ < td class ="col-md-3 "> < a href ="{{ site.instructor_pre_survey }}{{ site.github.project_title }} "> Pre-training survey</ a > </ td >
38+ < td class ="col-md-7 "> Please fill out our pre-training survey before the start of the course.</ td >
39+ </ tr >
40+ {% endif %}
3341 {% for lesson_episode in lesson_episodes %}
3442 {% if site.episode_order %}
3543 {% assign episode = site.episodes | where: "slug", lesson_episode | first %}
@@ -78,6 +86,17 @@ <h2 id="schedule">Schedule</h2>
7886 {% endfor %}
7987 {% assign hours = current | divided_by: 60 %}
8088 {% assign minutes = current | modulo: 60 %}
89+ {% if site.instructor_training %}
90+ < tr >
91+ {% if multiday %}< td class ="col-md-1 "> </ td > {% endif %}
92+ < td class ="{% if multiday %}col-md-1{% else %}col-md-2{% endif %} "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif +++ %}{{ minutes }} </ td >
93+ < td class ="col-md-3 "> < a href ="{{ site.instructor_post_survey }}{{ site.github.project_title }} "> Post-training survey</ a > </ td >
94+ < td class ="col-md-7 "> Please fill out our post-training survey after the course.</ td >
95+ </ tr >
96+ {% assign current = current | plus: 15 %}
97+ {% assign hours = current | divided_by: 60 %}
98+ {% assign minutes = current | modulo: 60 %}
99+ {% endif %}
81100 < tr >
82101 {% if multiday %}< td class ="col-md-1 "> </ td > {% endif %}
83102 < td class ="{% if multiday %}col-md-1{% else %}col-md-2{% endif %} "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
0 commit comments