2024-01-19 18:25:59 -06:00
|
|
|
<div class="container mt-5">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h1 class="mb-4 text-center">Edit Participant</h1>
|
2024-01-16 23:10:18 -06:00
|
|
|
|
2024-01-19 18:25:59 -06:00
|
|
|
<%= render 'form', participant: @participant %>
|
2024-01-16 23:10:18 -06:00
|
|
|
|
2024-01-19 18:25:59 -06:00
|
|
|
<div class="mt-3 d-flex justify-content-between">
|
|
|
|
<%= link_to 'Back to List', participants_path, class: "btn btn-secondary" %>
|
2024-01-20 00:05:36 -06:00
|
|
|
<%= link_to 'Delete', @participant, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
|
2024-01-19 18:25:59 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|