@@ -35,11 +35,19 | |||
|
35 | 35 | <% content_for :sidebar do %> |
|
36 | 36 | <%= form_tag({}, :method => :get) do %> |
|
37 | 37 | <h3><%= l(:label_roadmap) %></h3> |
|
38 | <ul> | |
|
38 | 39 | <% @trackers.each do |tracker| %> |
|
39 | <label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %> | |
|
40 | <%=h tracker.name %></label><br /> | |
|
40 | <li> | |
|
41 | <label> | |
|
42 | <%= check_box_tag("tracker_ids[]", tracker.id, | |
|
43 | (@selected_tracker_ids.include? tracker.id.to_s), | |
|
44 | :id => nil) %> | |
|
45 | <%=h tracker.name %> | |
|
46 | </label> | |
|
47 | </li> | |
|
41 | 48 | <% end %> |
|
42 | <br /> | |
|
49 | </ul> | |
|
50 | <p></p> | |
|
43 | 51 | <label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label> |
|
44 | 52 | <% if @project.descendants.active.any? %> |
|
45 | 53 | <%= hidden_field_tag 'with_subprojects', 0 %> |
General Comments 0
You need to be logged in to leave comments.
Login now