##// END OF EJS Templates
rename .rhtml to .html.erb of app/views/issue_moves/new.rhtml....
rename .rhtml to .html.erb of app/views/issue_moves/new.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6993 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6187:ed01ae121daf
r6873:766a8130f048
Show More
_form_update.rhtml
14 lines | 669 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _form_update.rhtml
Jean-Philippe Lang
Slight visual changes on the issue form....
r2267 <div class="attributes">
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <div class="splitcontentleft">
<p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 <p><%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), :include_blank => true %></p>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </div>
<div class="splitcontentright">
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_field_for_done_ratio? %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% end %>
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 <% unless @issue.assignable_versions.empty? %>
Jean-Philippe Lang
Makes target version field on update form use the grouped combo....
r3036 <p><%= f.select :fixed_version_id, (@issue.assignable_versions.collect {|v| [v.name, v.id]}), :include_blank => true %></p>
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 <% end %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </div>
Jean-Philippe Lang
Slight visual changes on the issue form....
r2267 </div>