##// END OF EJS Templates
code layout clean up app/views/issues/_attributes.html.erb...
Toshi MARUYAMA -
r11593:8a87ff96f99e
parent child
Show More
@@ -1,73 +1,81
1 1 <%= labelled_fields_for :issue, @issue do |f| %>
2 2
3 3 <div class="splitcontent">
4 4 <div class="splitcontentleft">
5 5 <% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %>
6 6 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), {:required => true},
7 7 :onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
8 8
9 9 <% else %>
10 10 <p><label><%= l(:field_status) %></label> <%= h(@issue.status.name) %></p>
11 11 <% end %>
12 12
13 13 <% if @issue.safe_attribute? 'priority_id' %>
14 14 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></p>
15 15 <% end %>
16 16
17 17 <% if @issue.safe_attribute? 'assigned_to_id' %>
18 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 19 <% end %>
20 20
21 21 <% if @issue.safe_attribute?('category_id') && @issue.project.issue_categories.any? %>
22 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 23 <%= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
24 24 new_project_issue_category_path(@issue.project),
25 25 :remote => true,
26 26 :method => 'get',
27 27 :title => l(:label_issue_category_new),
28 28 :tabindex => 200) if User.current.allowed_to?(:manage_categories, @issue.project) %></p>
29 29 <% end %>
30 30
31 31 <% if @issue.safe_attribute?('fixed_version_id') && @issue.assignable_versions.any? %>
32 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 33 <%= link_to(image_tag('add.png', :style => 'vertical-align: middle;'),
34 34 new_project_version_path(@issue.project),
35 35 :remote => true,
36 36 :method => 'get',
37 37 :title => l(:label_version_new),
38 38 :tabindex => 200) if User.current.allowed_to?(:manage_versions, @issue.project) %>
39 39 </p>
40 40 <% end %>
41 41 </div>
42 42
43 43 <div class="splitcontentright">
44 44 <% if @issue.safe_attribute? 'parent_issue_id' %>
45 45 <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10, :required => @issue.required_attribute?('parent_issue_id') %></p>
46 46 <%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path}')" %>
47 47 <% end %>
48 48
49 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>
50 <p>
51 <%= f.text_field(:start_date, :size => 10, :disabled => !@issue.leaf?,
52 :required => @issue.required_attribute?('start_date')) %>
53 <%= calendar_for('issue_start_date') if @issue.leaf? %>
54 </p>
51 55 <% end %>
52 56
53 57 <% 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>
58 <p>
59 <%= f.text_field(:due_date, :size => 10, :disabled => !@issue.leaf?,
60 :required => @issue.required_attribute?('due_date')) %>
61 <%= calendar_for('issue_due_date') if @issue.leaf? %>
62 </p>
55 63 <% end %>
56 64
57 65 <% if @issue.safe_attribute? 'estimated_hours' %>
58 66 <p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('estimated_hours') %> <%= l(:field_hours) %></p>
59 67 <% end %>
60 68
61 69 <% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %>
62 70 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :required => @issue.required_attribute?('done_ratio') %></p>
63 71 <% end %>
64 72 </div>
65 73 </div>
66 74
67 75 <% if @issue.safe_attribute? 'custom_field_values' %>
68 76 <%= render :partial => 'issues/form_custom_fields' %>
69 77 <% end %>
70 78
71 79 <% end %>
72 80
73 81 <% include_calendar_headers_tags %>
General Comments 0
You need to be logged in to leave comments. Login now