Participant

Study Id: <%= @participant.study_id %>

Email: <%= @participant.email %>

Phone Number: <%= number_to_phone(@participant.phone_number, area_code: true) %>

Contact Preference: <%= @participant.contact_preference.titleize %>

<% if social_features? %>

Display Name: <%= @participant.display_name.blank? ? "N/A" : @participant.display_name %>

<% end %>

Membership Status: <%= membership_status @participant, @participant.active_membership %>

Current Group: <% if @participant.active_membership && @participant.active_membership.group %> <%= link_to @participant.active_group.title, group_path(@participant.active_group) %> <% else %> None <% end %>

<% if can? :update, @participant %>

<%= link_to "Assign New Group", new_participant_group_path(@participant), class: "btn btn-default" %>

<% end %>

Current Coach/Moderator: <% if @participant.coach %> <%= link_to @participant.coach.email, participant_coach_path(@participant, @participant.coach) %> <% else %> None <% end %>

<% if can? :update, @participant %>

<% if @participant.active_group_is_social? %> <%= link_to "Assign Coach/Moderator", woz_participant_coach_path(participant_id: @participant.id), class: "btn btn-default" %> <% elsif @participant.coach %> <%= link_to_if(@participant.memberships.any?, "Assign Coach/Moderator", edit_participant_coach_path(@participant, @participant.coach), class: "btn btn-default") %> <%= @participant.memberships.any? ? "" : "* Please assign Group first" %> <% else %> <%= link_to_if(@participant.memberships.any?, "Assign Coach/Moderator", new_participant_coach_path(@participant), class: "btn btn-default") %> <%= @participant.memberships.any? ? "" : "* Please assign Group first" %> <% end %>

<% end %> <% if can? :index, Membership %>

Memberships

Below lists the all groups this participant has been a member of and whether they are currently active or inactive.
<% end %>