##// END OF EJS Templates
Merged r3897 from trunk....
Merged r3897 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3900 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3037:4fe14e71c2d7
r3786:59f98693ae47
Show More
_form_update.rhtml
14 lines | 649 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>
<p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
</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>