Name | <%= @employer.first_name %> <%= @employer.last_name %> |
---|---|
Address | <%= [@employer.address_line_1, @employer.address_line_2, @employer.city, @employer.state, @employer.zip].reject(&:blank?).join(', ') %> |
Phone | <%= @employer.phone %> |
<%= @employer.email %> | |
TIN | <%= @employer.tin %> |
Date of Birth | <%= @employer.dob %> |
SSN | <%= mask_ssn(@employer.ssn) %> |
Gender | <%= @employer.gender %> |
Participant Name | Start Date | End Date | Actions |
---|---|---|---|
<%= "#{participant.first_name} #{participant.last_name}" %> | <%= employer_record.start_date.strftime('%B %d, %Y') if employer_record.start_date %> | <%= employer_record.end_date.strftime('%B %d, %Y') if employer_record.end_date %> | <%= link_to participant_path(participant), class: 'btn btn-sm btn-secondary' do %> <% end %> <%= link_to edit_employer_record_path(employer_record), class: 'btn btn-sm btn-info' do %> <% end %> |
No linked participants.
<% end %>Worker Name | Start Date | End Date | Actions |
---|---|---|---|
<%= worker.full_name %> | <%= employment.start_date.strftime('%B %d, %Y') if employment.start_date %> | <%= employment.end_date.strftime('%B %d, %Y') if employment.end_date %> | <%= link_to worker_path(worker), class: 'btn btn-sm btn-secondary' do %> <% end %> <%= link_to edit_employment_path(employment), class: 'btn btn-sm btn-info' do %> <% end %> |
No linked workers.
<% end %>