30 lines
438 B
Plaintext
30 lines
438 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<strong>First name:</strong>
|
|
<%= @friend.first_name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Last name:</strong>
|
|
<%= @friend.last_name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Email:</strong>
|
|
<%= @friend.email %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Phone:</strong>
|
|
<%= @friend.phone %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Twitter:</strong>
|
|
<%= @friend.twitter %>
|
|
</p>
|
|
|
|
<%= link_to 'Edit', edit_friend_path(@friend) %> |
|
|
<%= link_to 'Back', friends_path %>
|