##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
remove trailing white-spaces from app/views/issues/_attributes.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7313 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7193:60d80e9d314e
r7193:60d80e9d314e
Show More
_attributes.html.erb
50 lines | 2.7 KiB | text/plain | TextLexer
/ app / views / issues / _attributes.html.erb
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <% fields_for :issue, @issue, :builder => TabularFormBuilder do |f| %>
<div class="splitcontentleft">
<% if @issue.new_record? || @allowed_statuses.any? %>
<p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
<% else %>
Toshi MARUYAMA
HTML escape at app/views/issues/_attributes.rhtml....
r6249 <p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <% end %>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></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
Enable tracker update on issue edit form (#2405)....
r2994 <% unless @project.issue_categories.empty? %>
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
Jean-Philippe Lang
Replaces 'New category' link on the issue form with an icon....
r3002 <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'),
l(:label_issue_category_new),
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
r7193 'category[name]',
Jean-Philippe Lang
Moves ProjectsController#add_issue_category to IssueCategoriesController#new....
r3435 {:controller => 'issue_categories', :action => 'new', :project_id => @project},
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
r7193 :title => l(:label_issue_category_new),
Jean-Philippe Lang
Moves ProjectsController#add_issue_category to IssueCategoriesController#new....
r3435 :tabindex => 199) if authorize_for('issue_categories', 'new') %></p>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <% end %>
<% unless @issue.assignable_versions.empty? %>
Jean-Philippe Lang
Ability to add a new version from the issue form (#4315)....
r3012 <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %>
<%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'),
l(:label_version_new),
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
r7193 'version[name]',
Eric Davis
Refactor: split VersionsController#new into #new and #create...
r3976 {:controller => 'versions', :action => 'create', :project_id => @project},
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
r7193 :title => l(:label_version_new),
Jean-Philippe Lang
Moves ProjectsController#add_version to VersionsController#new....
r3434 :tabindex => 200) if authorize_for('versions', 'new') %>
Jean-Philippe Lang
Ability to add a new version from the issue form (#4315)....
r3012 </p>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <% end %>
</div>
<div class="splitcontentright">
Jean-Philippe Lang
Moved the parent issue field above start/due date fields....
r5298 <% if User.current.allowed_to?(:manage_subtasks, @project) %>
<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p>
<div id="parent_issue_candidates" class="autocomplete"></div>
<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %>
<% end %>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_start_date') if @issue.leaf? %></p>
<p><%= f.text_field :due_date, :size => 10, :disabled => !@issue.leaf? %><%= calendar_for('issue_due_date') if @issue.leaf? %></p>
<p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf? %> <%= l(:field_hours) %></p>
<% if @issue.leaf? && Issue.use_field_for_done_ratio? %>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <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
Enable tracker update on issue edit form (#2405)....
r2994 </div>
<div style="clear:both;"> </div>
Eric Davis
Use the full path to the partials...
r3975 <%= render :partial => 'issues/form_custom_fields' %>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994
<% end %>