2024-01-19 18:25:59 -06:00
|
|
|
<div class="container mt-5">
|
|
|
|
<h1 class="mb-4 text-center">Participants</h1>
|
2024-01-16 23:10:18 -06:00
|
|
|
|
2024-01-22 15:22:22 -06:00
|
|
|
<div class="text-center mt-3">
|
2024-01-22 21:46:20 -06:00
|
|
|
<%= link_to 'New Participant', new_participant_path, class: 'btn btn-dark mb-3' %>
|
2024-01-22 15:22:22 -06:00
|
|
|
</div>
|
2024-01-22 21:22:29 -06:00
|
|
|
|
2024-01-22 19:48:38 -06:00
|
|
|
<%= paginate @participants %>
|
|
|
|
|
|
|
|
|
2024-01-19 18:25:59 -06:00
|
|
|
<table class="table table-striped table-hover">
|
|
|
|
<thead class="table-dark">
|
2024-01-16 23:10:18 -06:00
|
|
|
<tr>
|
2024-01-20 00:28:17 -06:00
|
|
|
<th>First Name</th>
|
|
|
|
<th>Last Name</th>
|
2024-01-19 18:25:59 -06:00
|
|
|
<th>Address</th>
|
|
|
|
<th>Phone</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th>Program</th>
|
|
|
|
<th>MCI</th>
|
|
|
|
<th>DOB</th>
|
|
|
|
<th colspan="3"></th>
|
2024-01-16 23:10:18 -06:00
|
|
|
</tr>
|
2024-01-19 18:25:59 -06:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% @participants.each do |participant| %>
|
|
|
|
<tr>
|
2024-01-20 00:28:17 -06:00
|
|
|
<td><%= participant.first_name %></td>
|
|
|
|
<td><%= participant.last_name %></td>
|
2024-01-19 18:25:59 -06:00
|
|
|
<td><%= participant.address %></td>
|
|
|
|
<td><%= participant.phone %></td>
|
|
|
|
<td><%= participant.email %></td>
|
2024-01-19 23:38:15 -06:00
|
|
|
<td><%= participant.programs.map(&:name).join(", ") %></td>
|
2024-01-19 18:25:59 -06:00
|
|
|
<td><%= participant.mci %></td>
|
2024-01-21 22:43:27 -06:00
|
|
|
<td><%= participant.dob.strftime('%B %d, %Y') if participant.dob %></td>
|
|
|
|
|
2024-01-20 00:52:54 -06:00
|
|
|
<td>
|
2024-01-22 19:48:38 -06:00
|
|
|
<%= link_to participant, class: 'btn btn-sm btn-secondary' do %>
|
2024-01-20 00:52:54 -06:00
|
|
|
<i class="bi bi-eye"></i><!-- Eyeball icon for 'Show' -->
|
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
<td>
|
2024-01-22 19:48:38 -06:00
|
|
|
<%= link_to edit_participant_path(participant), class: 'btn btn-sm btn-warning' do %>
|
2024-01-20 00:52:54 -06:00
|
|
|
<i class="bi bi-pencil-fill"></i> <!-- Pencil icon for 'Edit' -->
|
|
|
|
<% end %>
|
|
|
|
</td>
|
2024-01-19 18:25:59 -06:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
2024-01-22 19:48:38 -06:00
|
|
|
|
2024-01-19 18:25:59 -06:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2024-01-16 23:10:18 -06:00
|
|
|
|
2024-01-19 18:25:59 -06:00
|
|
|
</div>
|
2024-01-22 19:48:38 -06:00
|
|
|
|
|
|
|
|