Edit annotation

<%= error_messages_for 'comment' %> <% form_tag '../update_comment/' + @comment.id.to_s do %>


<%= text_area 'comment', 'body', :rows => 10, :cols => 60 %>

<%= select('comment', "visible", [["Yes - show comment",true],["No - hide comment",false]]) %>

<%= submit_tag 'Save', :accesskey => 's' %>

<% end %>

<%= link_to 'Show', '../show/' + @comment.info_request.id.to_s %> | <%= link_to 'List all', '../list' %>