Skip to content

Instantly share code, notes, and snippets.

@detomastah
Created January 17, 2014 10:09
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save detomastah/8470959 to your computer and use it in GitHub Desktop.
<% if @recruitment.tandc %>
<% content_for :title, "Education Partner Checklist 2013/14" %>
<h2>Training</h2>
<p>Before you start running the Apps for Good course you need to attend a Train The Trainer session, so that you feel confident in delivering the course to your students.</p>
<h3 style="margin-top:1em;">Please register to attend to one of the Train The Trainer sessions listed below.</h3>
<!-- <p>The Education Partner checklist provides you with the training, resources and expert guidance to successfully deliver the Apps for Good course.</p> -->
<%
# TODO: EventBrite API
ttts = [
# cancelled
# ["http://tttsession1southeast.eventbrite.co.uk" , "Wildern School, Hampshire, South East", "2013-04-25", "8:30am – 4:00pm"],
["http://tttsession2westmidlands.eventbrite.co.uk" , "Shireland Collegiate Academy, Sandwell, West Midlands" , "2013-04-29", "8:30am – 4:00pm"],
["http://tttsession3southwest.eventbrite.co.uk" , "The Grange School, Dorset, South West" , "2013-05-09", "8:30am – 4:00pm"],
["http://tttsession4eastofengland.eventbrite.co.uk" , "Mount Grace School, Hertfordshire, East of England" , "2013-06-18", "8:30am - 4:00pm"],
["http://tttsession5northwest.eventbrite.co.uk" , "Bolton St Catherine’s Academy, Bolton, North West" , "2013-06-25", "8:30am - 4:00pm"],
["http://tttsession6northwest.eventbrite.co.uk" , "Thornleigh Salesian College, Bolton, North West" , "2013-07-04", "8:30am - 4:00pm"],
["http://tttsession7london.eventbrite.co.uk" , "Gladesmore Community School, Haringey, London" , "2013-07-08", "8:30am - 4:00pm"],
["http://tttsession8southeast.eventbrite.co.uk" , "Dr Challoner’s Grammar School, Buckinghamshire, South East" , "2013-07-11", "8:30am - 4:00pm"],
["http://tttsession9scotland.eventbrite.co.uk" , "Calderglen High School, Glasgow, Scotland" , "2013-06-14", "8:30am - 4:00pm"],
["http://tttsession10yorkshireandthehumber.eventbrite.co.uk", "North East Leeds City Learning Centre, Leeds, Yorkshire & The Humber", "2013-06-17", "8:30am - 4:00pm"],
["http://tttsession11northernireland.eventbrite.co.uk" , "Ballyclare High School, County Antrim, Northern Ireland" , "2013-05-23", "8:30am - 4:00pm"]
].sort { |a, b| a[2] <=> b[2] }
%>
<ul style="padding-left:16px">
<% ttts.each do |ttt| %>
<li style="padding-bottom: 6px;"><%= link_to "#{ttt[1]}, #{ttt[2].to_date.strftime("%A, %d %B")}, #{ttt[3]}", ttt[0], :target => "_eventbrite" %></li>
<% end %>
</ul>
<h3 style="margin-top:1em;">Before you attend the training all educators must ensure they have completed the following:</h3>
<ul style="padding-left:16px; margin-bottom: 1em;">
<li>Booked necessary travel and secured cover within the school</li>
<li>Reviewed pre-training briefing</li>
<li>Completed pre-training tasks, including installing necessary software on your laptop</li>
</ul>
<p><strong>The pre-training briefing and associated tasks will be emailed to you two weeks before your session. If you haven’t received the pre-training materials please email <%= mail_to "education@appsforgood.org", "education@appsforgood.org" %> and we will arrange for them to be re-sent</strong></p>
<p>Lunch will be provided on the day, including vegetarian options, please email <%= mail_to "education@appsforgood.org", "education@appsforgood.org" %> at least two weeks in advance of your session if you have any specific dietary or accessibility requirements.</p>
<p class="alert">Technical requirements of what to bring will be included as part of pretraining briefing/tasks.</p>
<h3 style="margin-top:1em; color: #bbb;">After you have attended the training:</h3>
<ul style="padding-left:16px; margin-bottom: 1em; color: #bbb;">
<li>Plan course delivery</li>
<li>IT preparation</li>
<ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<% else %>
<% content_for :title, "Welcome to Apps for Good" %>
<p>
Before you can get started we need you to agree to our Partner School Agreement.<br>
This is important and affects your legal rights, so please read it carefully as well as our <a href="https://s3-eu-west-1.amazonaws.com/appsforgood-assets/education_partner/Apps_for_Good_privacy_and_cookies_policy.pdf">Privacy Policy</a>.
</p>
<%= form_for @recruitment, :url => tandc_institution_path(@institution), :html => { :class => "narrow_form registration_form" } do |f| %>
<div class="control-group">
<%= check_box_tag :tandc, nil, @recruitment.tandc, :onclick => "javascript:
b = $('#submit_tandc');
if($(this).attr('checked') == 'checked') {
b.attr('disabled', false); b.css('background-color', '#00a8e9');
}
else {
b.attr('disabled', true); b.css('background-color', '#aaa');
};
" %>
<%= label_tag :tandc, "I confirm that I have read and accept on behalf of the Partner School the \"<a href=\"https://s3-eu-west-1.amazonaws.com/appsforgood-test-assets/education_partner/CDI_Apps_for_Good_Partner_school_agreement_2013-4.pdf\">2013/14 Partner School Agreement for the Provision of CDI Apps for Good Courses</a>\". I also confirm that a copy of the agreement has been signed by the headteacher (or equivalent) of the Partner School and has been returned to CDI Apps for Good (125-127 Mare Street, London E8 3RH).".html_safe, :class => "radio-button" %>
</section>
</div>
<div class="form-actions">
<%= f.submit "Next step", :disabled => true, :class => "btn", :id => "submit_tandc", :style => "background-color: #aaa" %>
</div>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment