##// END OF EJS Templates
Do not generate duplicate ids and fixes tag attribute....
Jean-Philippe Lang -
r8441:32b91e685e2d
parent child
Show More
@@ -18,7 +18,7
18 18 <table>
19 19 <tr>
20 20 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
21 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
21 <td width="240px" class="total-hours" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
22 22 </tr>
23 23 <% if User.current.allowed_to?(:view_time_entries, @project) %>
24 24 <tr>
@@ -41,7 +41,7
41 41 <caption><%= l(:label_related_issues) %></caption>
42 42 <%- @issues.each do |issue| -%>
43 43 <tr class="hascontextmenu">
44 <td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td>
44 <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td>
45 45 <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
46 46 </tr>
47 47 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now