blob: ee43e849a62c5090b8414f615e4fa958d01e8b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<h1>Edit annotation</h1>
<%= error_messages_for 'comment' %>
<% form_tag '../update_comment/' + @comment.id.to_s do %>
<p><label for="comment_body">Body of annotation</label><br/>
<%= text_area 'comment', 'body', :rows => 10, :cols => 60 %></p>
<p><label for="comment_visible">Visible</label>
<%= select('comment', "visible", [["Yes - show comment",true],["No - hide comment",false]]) %>
</p>
<p><%= submit_tag 'Save', :accesskey => 's' %></p>
<% end %>
<p>
<%= link_to 'Show', '../show/' + @comment.info_request.id.to_s %> |
<%= link_to 'List all', '../list' %>
</p>
|