%= title "Contact" %>
First Name:
<%=h @contact.first_name %>
Last Name:
<%=h @contact.last_name %>
Email Address:
<%=h @contact.email_address %>
<%= content_for :page_navigation do %>
<%= link_to "Edit", mail_manager.edit_contact_path(@contact), :class => 'button' %>
<%= link_to "Delete", @contact, :confirm => 'Are you sure?', :method => :delete, :class => 'button' %>
<%= link_to "View All", mail_manager.contacts_path, :class => 'button' %>
<% end %>