| <%= for (user) in users { %> |
|---|
|
<%= linkTo(profilePath({ profile_id: user.ID }), {class: "btn btn-info", body: "View"}) %>
<%= linkTo(editProfilePath({ profile_id: user.ID }), {class: "btn btn-warning", body: "Edit"}) %>
<%= linkTo(profilePath({ profile_id: user.ID }), {class: "btn btn-danger", "data-method": "DELETE", "data-confirm": "Are you sure?", body: "Destroy"}) %>
|