17 lines
350 B
Plaintext
17 lines
350 B
Plaintext
|
<h1>Participant Details</h1>
|
||
|
|
||
|
<p>
|
||
|
<strong>Name:</strong>
|
||
|
<%= @participant.name %>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<strong>Address:</strong>
|
||
|
<%= @participant.address %>
|
||
|
</p>
|
||
|
|
||
|
<!-- Repeat the above pattern for other attributes like phone, email, etc. -->
|
||
|
|
||
|
<%= link_to 'Edit', edit_participant_path(@participant) %> |
|
||
|
<%= link_to 'Back to List', participants_path %>
|