##// END OF EJS Templates
scm: git: insert revisions to database with reverse commit order (#7821, #5357)....
scm: git: insert revisions to database with reverse commit order (#7821, #5357). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5073 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3976:969bf2107b2e
r4953:6dc57e752dc4
Show More
_attributes.rhtml
45 lines | 2.4 KiB | text/html+ruby | RhtmlLexer
/ app / views / issues / _attributes.rhtml
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 %>
<p><label><%= l(:field_status) %></label> <%= @issue.status.name %></p>
<% 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
Enable tracker update on issue edit form (#2405)....
r2994 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
<% 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),
'category[name]',
Jean-Philippe Lang
Moves ProjectsController#add_issue_category to IssueCategoriesController#new....
r3435 {:controller => 'issue_categories', :action => 'new', :project_id => @project},
Jean-Philippe Lang
Replaces 'New category' link on the issue form with an icon....
r3002 :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),
'version[name]',
Eric Davis
Refactor: split VersionsController#new into #new and #create...
r3976 {:controller => 'versions', :action => 'create', :project_id => @project},
Jean-Philippe Lang
Ability to add a new version from the issue form (#4315)....
r3012 :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
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 %>