Sha256: e3acd4e233fe267250b3a1268a4639b0e981d04f2f52418f881f4728bc369403
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
- title "Bus Captain" .form-container %h1.section-title Bus %span.emphasized Captain %p#notice= notice %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 First Name %th Last Name %th Email %th Phone Number %th School %th Checked in? %tbody - @bus_list.passengers.each do |p| %tr %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
10 entries across 10 versions & 1 rubygems