##// 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 <table>
18 <table>
19 <tr>
19 <tr>
20 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
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 </tr>
22 </tr>
23 <% if User.current.allowed_to?(:view_time_entries, @project) %>
23 <% if User.current.allowed_to?(:view_time_entries, @project) %>
24 <tr>
24 <tr>
@@ -41,7 +41,7
41 <caption><%= l(:label_related_issues) %></caption>
41 <caption><%= l(:label_related_issues) %></caption>
42 <%- @issues.each do |issue| -%>
42 <%- @issues.each do |issue| -%>
43 <tr class="hascontextmenu">
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 <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
45 <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
46 </tr>
46 </tr>
47 <% end %>
47 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now