annotate .svn/pristine/00/0081b5051789911922bdd0b18a28f0ad87c64e8d.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
rev   line source
Chris@1295 1 <div class="contextual">
Chris@1295 2 <%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %>
Chris@1295 3 <%= link_to l(:field_summary), fields_trackers_path, :class => 'icon icon-summary' %>
Chris@1295 4 </div>
Chris@1295 5
Chris@1295 6 <h2><%=l(:label_tracker_plural)%></h2>
Chris@1295 7
Chris@1295 8 <table class="list">
Chris@1295 9 <thead><tr>
Chris@1295 10 <th><%=l(:label_tracker)%></th>
Chris@1295 11 <th></th>
Chris@1295 12 <th><%=l(:button_sort)%></th>
Chris@1295 13 <th></th>
Chris@1295 14 </tr></thead>
Chris@1295 15 <tbody>
Chris@1295 16 <% for tracker in @trackers %>
Chris@1295 17 <tr class="<%= cycle("odd", "even") %>">
Chris@1295 18 <td><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td>
Chris@1295 19 <td align="center">
Chris@1295 20 <% unless tracker.workflow_rules.count > 0 %>
Chris@1295 21 <span class="icon icon-warning">
Chris@1295 22 <%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>)
Chris@1295 23 </span>
Chris@1295 24 <% end %>
Chris@1295 25 </td>
Chris@1295 26 <td align="center" style="width:15%;">
Chris@1295 27 <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %>
Chris@1295 28 </td>
Chris@1295 29 <td class="buttons">
Chris@1295 30 <%= delete_link tracker_path(tracker) %>
Chris@1295 31 </td>
Chris@1295 32 </tr>
Chris@1295 33 <% end %>
Chris@1295 34 </tbody>
Chris@1295 35 </table>
Chris@1295 36
Chris@1295 37 <p class="pagination"><%= pagination_links_full @tracker_pages %></p>
Chris@1295 38
Chris@1295 39 <% html_title(l(:label_tracker_plural)) -%>