Name: <%= @vendor.name %>
Address: <%= [@vendor.address_line_1, @vendor.address_line_2, @vendor.city, @vendor.state, @vendor.zip].reject(&:blank?).join(', ') %>
Phone: <%= @vendor.phone %>
Email: <%= @vendor.email %>
DBA: <%= @vendor.dba %>
TIN: <%= @vendor.tin %>
Contact: <%= @vendor.contact %>
Participant Name | Start Date | End Date | Actions |
---|---|---|---|
<%= participant ? "#{participant.first_name} #{participant.last_name}" : 'No Participant 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 participant_path(participant), class: 'btn btn-sm btn-secondary' do %> <% end %> <%= link_to edit_service_contract_path(contract), class: 'btn btn-sm btn-info' do %> <% end %> |
No linked participants.
<% end %>