Sha256: de4f855d9e3d3593221ce5e376ba2ebfb09edb9bcde12f7677003b7a89b6d36c
Contents?: true
Size: 750 Bytes
Versions: 4
Compression:
Stored size: 750 Bytes
Contents
%p#notice= notice %h1 Registrations %table %thead %tr %th First name %th Middle initial %th Last name %th Email %th Age %th Date of birth %th{ colspan: "3" } %tbody - @registrations.each do |registration| %tr %td= registration.first_name %td= registration.middle_initial %td= registration.last_name %td= registration.email %td= registration.age %td= registration.date_of_birth %td= link_to 'Show', registration %td= link_to 'Edit', edit_registration_path(registration) %td= link_to 'Destroy', registration, method: :delete, data: { confirm: 'Are you sure?' } %br/ = link_to 'New Registration', new_registration_path
Version data entries
4 entries across 4 versions & 1 rubygems