Mercurial > hg > soundsoftware-site
comparison .svn/pristine/1b/1bcf725235890aaeb11816218989eb6ac291e46f.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1296:038ba2d95de8 | 1464:261b3d9a4903 |
---|---|
1 <%= 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 id="start_date_area"> | |
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> | |
55 <% end %> | |
56 | |
57 <% if @issue.safe_attribute? 'due_date' %> | |
58 <p id="due_date_area"> | |
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> | |
63 <% end %> | |
64 | |
65 <% if @issue.safe_attribute? 'estimated_hours' %> | |
66 <p><%= f.text_field :estimated_hours, :size => 3, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('estimated_hours') %> <%= l(:field_hours) %></p> | |
67 <% end %> | |
68 | |
69 <% if @issue.safe_attribute?('done_ratio') && @issue.leaf? && Issue.use_field_for_done_ratio? %> | |
70 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :required => @issue.required_attribute?('done_ratio') %></p> | |
71 <% end %> | |
72 </div> | |
73 </div> | |
74 | |
75 <% if @issue.safe_attribute? 'custom_field_values' %> | |
76 <%= render :partial => 'issues/form_custom_fields' %> | |
77 <% end %> | |
78 | |
79 <% end %> | |
80 | |
81 <% include_calendar_headers_tags %> |