@@ -12,7 +12,7 | |||||
12 | <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p> |
|
12 | <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p> | |
13 | <p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p> |
|
13 | <p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p> | |
14 | <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> |
|
14 | <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> | |
15 | <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> |
|
15 | <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> | |
16 | </div> |
|
16 | </div> | |
17 | <div class="splitcontentright"> |
|
17 | <div class="splitcontentright"> | |
18 | <% if authorize_for('timelog', 'edit') %> |
|
18 | <% if authorize_for('timelog', 'edit') %> |
@@ -25,7 +25,7 | |||||
25 | <p><%= custom_field_tag_with_label @custom_value %></p> |
|
25 | <p><%= custom_field_tag_with_label @custom_value %></p> | |
26 | <% end %> |
|
26 | <% end %> | |
27 |
|
27 | |||
28 | <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> |
|
28 | <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> | |
29 | </div> |
|
29 | </div> | |
30 | <!--[eoform:issue]--> |
|
30 | <!--[eoform:issue]--> | |
31 | </div> |
|
31 | </div> |
@@ -26,7 +26,7 | |||||
26 | <p><%= custom_field_tag_with_label @custom_value %></p> |
|
26 | <p><%= custom_field_tag_with_label @custom_value %></p> | |
27 | <% end %> |
|
27 | <% end %> | |
28 |
|
28 | |||
29 | <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> |
|
29 | <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p> | |
30 |
|
30 | |||
31 | <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%> |
|
31 | <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%> | |
32 | <%= image_to_function "add.png", "addFileField();return false" %></label> |
|
32 | <%= image_to_function "add.png", "addFileField();return false" %></label> |
General Comments 0
You need to be logged in to leave comments.
Login now