edit.html.erb 212 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <h1>Editing question</h1> <% form_for(@question) do |f| %> <%= f.error_messages %> <p> <%= f.submit 'Update' %> </p> <% end %> <%= link_to 'Show', @question %> | <%= link_to 'Back', questions_path %>