<%= render :partial => "person/nav" %>

Person

<%= start_form_tag :action => 'update', :id => @person %>
nick<%= text_field 'person', 'nick' %>
Vorname<%= text_field 'person', 'firstname' %>
Nachname<%= text_field 'person', 'lastname' %>
Email:<%= text_field 'person', 'email' %>
Tel:<%= text_field 'person', 'tel' %>
<%= submit_tag 'Edit' %> <%= end_form_tag %> <%= link_to 'Show', :action => 'show', :id => @person %> | <%= link_to 'Back', :action => 'list' %>