comparison app/views/issue_moves/.svn/text-base/new.rhtml.svn-base @ 37:94944d00e43c

* Update to SVN trunk rev 4411
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 19 Nov 2010 13:24:41 +0000
parents 1d32c0a0efbf
children af80e5618e9b
comparison
equal deleted inserted replaced
22:40f7cfd4df19 37:94944d00e43c
32 <label><%= l(:field_status) %></label> 32 <label><%= l(:field_status) %></label>
33 <%= select_tag('status_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %> 33 <%= select_tag('status_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %>
34 </p> 34 </p>
35 35
36 <p> 36 <p>
37 <label><%= l(:field_priority) %></label>
38 <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.all, :id, :name)) %>
39 </p>
40
41 <p>
37 <label><%= l(:field_start_date) %></label> 42 <label><%= l(:field_start_date) %></label>
38 <%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %> 43 <%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %>
39 </p> 44 </p>
40 45
41 <p> 46 <p>
42 <label><%= l(:field_due_date) %></label> 47 <label><%= l(:field_due_date) %></label>
43 <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %> 48 <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %>
44 </p> 49 </p>
50
51 <fieldset><legend><%= l(:field_notes) %></legend>
52 <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
53 <%= wikitoolbar_for 'notes' %>
54 </fieldset>
45 55
46 <%= call_hook(:view_issues_move_bottom, :issues => @issues, :target_project => @target_project, :copy => !!@copy) %> 56 <%= call_hook(:view_issues_move_bottom, :issues => @issues, :target_project => @target_project, :copy => !!@copy) %>
47 </div> 57 </div>
48 58
49 <% if @copy %> 59 <% if @copy %>