Name | <%= @participant.first_name %> <%= @participant.last_name %> |
---|---|
Address | <%= @participant.address_line_1 %><%= ', ' + @participant.address_line_2 unless @participant.address_line_2.blank? %>
<%= "#{@participant.city}, #{@participant.state} #{@participant.zip}" %> |
Phone | <%= @participant.phone %> |
<%= @participant.email %> | |
MCI | <%= @participant.mci %> |
DOB | <%= @participant.dob.strftime('%B %d, %Y') if @participant.dob.present? %> |
SSN | <%= mask_ssn(@participant.ssn) %> |
Gender | <%= @participant.gender %> |
Worker Name | Start Date | End Date | Actions |
---|---|---|---|
<%= employment.worker&.full_name || 'No Worker Assigned' %> | <%= employment.start_date.strftime('%B %d, %Y') if employment.start_date.present? %> | <%= employment.end_date.strftime('%B %d, %Y') if employment.end_date.present? %> | <%= link_to worker_path(employment.worker), class: 'btn btn-sm btn-secondary' do %> <% end %> <%= link_to edit_employment_path(employment), class: 'btn btn-sm btn-info' do %> <% end %> |
No employments available.
<% end %>Vendor Name | Start Date | End Date | Actions |
---|---|---|---|
<%= contract.vendor&.name || 'No Vendor Assigned' %> | <%= contract.start_date.strftime('%B %d, %Y') if contract.start_date.present? %> | <%= contract.end_date.strftime('%B %d, %Y') if contract.end_date.present? %> | <%= link_to vendor_path(contract.vendor), class: 'btn btn-sm btn-secondary' do %> <% end %> <%= link_to edit_service_contract_path(contract), class: 'btn btn-sm btn-info' do %> <% end %> |
No service contracts available.
<% end %>