obdev/app/views/participants/show.html.erb

17 lines
350 B
Plaintext
Raw Normal View History

<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 %>