##// END OF EJS Templates
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml...
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7314 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6893:4038b8dbd4ec
r7194:be7b00fc32d4
Show More
_form_update.html.erb
14 lines | 669 B | text/plain | TextLexer
/ app / views / issues / _form_update.html.erb
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>