To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 0b / 0bf8f19f5486edff5718369b36db7c358c6ec343.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (3.63 KB)
| 1 | 1296:038ba2d95de8 | Chris | <%= labelled_fields_for :issue, @issue do |f| %> |
|---|---|---|---|
| 2 | |||
| 3 | <div class="splitcontent"> |
||
| 4 | <div class="splitcontentleft"> |
||
| 5 | <% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %>
|
||
| 6 | <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), {:required => true},
|
||
| 7 | :onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
|
||
| 8 | |||
| 9 | <% else %> |
||
| 10 | <p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p> |
||
| 11 | <% end %> |
||
| 12 | |||
| 13 | <% if @issue.safe_attribute? 'priority_id' %> |
||
| 14 | <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></p>
|
||
| 15 | <% end %> |
||
| 16 | |||
| 17 | <% if @issue.safe_attribute? 'assigned_to_id' %> |
||
| 18 | <p><%= f.select :assigned_to_id, principals_options_for_select(@issue.assignable_users, @issue.assigned_to), :include_blank => true, :required => @issue.required_attribute?('assigned_to_id') %></p>
|
||
| 19 | <% end %> |
||
| 20 | |||
| 21 | <% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %>
|
||
| 22 | <p><%= f.select :category_id, (@issue.project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true, :required => @issue.required_attribute?('category_id') %>
|
||
| 23 | <%= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
|
||
| 24 | new_project_issue_category_path(@issue.project), |
||
| 25 | :remote => true, |
||
| 26 | :method => 'get', |
||
| 27 | :title => l(:label_issue_category_new), |
||
| 28 | :tabindex => 200) if User.current.allowed_to?(:manage_categories, @issue.project) %></p> |
||
| 29 | <% end %> |
||
| 30 | |||
| 31 | <% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
|
||
| 32 | <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true, :required => @issue.required_attribute?('fixed_version_id') %>
|
||
| 33 | <%= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
|
||
| 34 | new_project_version_path(@issue.project), |
||
| 35 | :remote => true, |
||
| 36 | :method => 'get', |
||
| 37 | :title => l(:label_version_new), |
||
| 38 | :tabindex => 200) if User.current.allowed_to?(:manage_versions, @issue.project) %> |
||
| 39 | </p> |
||
| 40 | <% end %> |
||
| 41 | </div> |
||
| 42 | |||
| 43 | <div class="splitcontentright"> |
||
| 44 | <% if @issue.safe_attribute? 'parent_issue_id' %> |
||
| 45 | <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10, :required => @issue.required_attribute?('parent_issue_id') %></p>
|
||
| 46 | <%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path}')" %>
|
||
| 47 | <% end %> |
||
| 48 | |||
| 49 | <% if @issue.safe_attribute? 'start_date' %> |
||
| 50 | <p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('start_date') %><%= calendar_for('issue_start_date') if @issue.leaf? %></p>
|
||
| 51 | <% end %> |
||
| 52 | |||
| 53 | <% if @issue.safe_attribute? 'due_date' %> |
||
| 54 | <p><%= f.text_field :due_date, :size => 10, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('due_date') %><%= calendar_for('issue_due_date') if @issue.leaf? %></p>
|
||
| 55 | <% end %> |
||
| 56 | |||
| 57 | <% if @issue.safe_attribute? 'estimated_hours' %> |
||
| 58 | <p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('estimated_hours') %> <%= l(:field_hours) %></p>
|
||
| 59 | <% end %> |
||
| 60 | |||
| 61 | <% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %>
|
||
| 62 | <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :required => @issue.required_attribute?('done_ratio') %></p>
|
||
| 63 | <% end %> |
||
| 64 | </div> |
||
| 65 | </div> |
||
| 66 | |||
| 67 | <% if @issue.safe_attribute? 'custom_field_values' %> |
||
| 68 | <%= render :partial => 'issues/form_custom_fields' %> |
||
| 69 | <% end %> |
||
| 70 | |||
| 71 | <% end %> |
||
| 72 | |||
| 73 | <% include_calendar_headers_tags %> |