Sha256: 90420c76fc440c43fc92a6a2a25dd2a61296c9c76ef704eceb1fb77cf178735c
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 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 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
5 entries across 5 versions & 1 rubygems