Sha256: 0e6cd4705ef04a2150fcb07fe2bc7aa7a165157734fd3dd729c54af22045b690
Contents?: true
Size: 1.38 KB
Versions: 21
Compression:
Stored size: 1.38 KB
Contents
- title "Bus Captain" .form-container %h1.section-title Bus %span.emphasized Captain %p Thank you for being a bus captain! Below is any information you may need about your passengers. %p If a student was accepted but didn't RSVP or sign up for the bus, they can go to %strong= rsvp_url to do so. - if Rails.configuration.hackathon['bus_captain_notes'] = markdown(Rails.configuration.hackathon['bus_captain_notes']) %p %b Bus List Name: = @bus_list.name = render partial: 'bus_list_info', locals: { bus_list: @bus_list } %p %strong Passengers: = "(#{@bus_list.passengers.count} total, #{@bus_list.checked_in_passengers.count} checked in)" %table.table %thead %tr %th Boarded bus? %th First Name %th Last Name %th Email %th Phone Number %th School %th Checked in? %tbody - @bus_list.passengers.each do |p| %tr %td %input{type: 'checkbox', checked: p.boarded_bus?, data: { "boarded-bus": true, action: boarded_bus_bus_list_path, id: p.id } } %td= p.first_name %td= p.last_name %td= p.email %td= phone_link_to p.phone %td= p.school.name %td= p.checked_in? ? '<span class="acc-status-accepted">Yes</span>'.html_safe : 'No' = render partial: 'bus_list_stats', locals: { bus_list: @bus_list }
Version data entries
21 entries across 21 versions & 1 rubygems