annotate .svn/pristine/6b/6be65077afa803bdec605ecec12428554273b481.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), {:action => 'fields'}, :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"><% unless tracker.workflow_rules.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => 'workflows', :action => 'edit', :tracker_id => tracker} %>)</span><% end %></td>
|
Chris@1295
|
20 <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %></td>
|
Chris@1295
|
21 <td class="buttons">
|
Chris@1295
|
22 <%= delete_link tracker_path(tracker) %>
|
Chris@1295
|
23 </td>
|
Chris@1295
|
24 </tr>
|
Chris@1295
|
25 <% end %>
|
Chris@1295
|
26 </tbody>
|
Chris@1295
|
27 </table>
|
Chris@1295
|
28
|
Chris@1295
|
29 <p class="pagination"><%= pagination_links_full @tracker_pages %></p>
|
Chris@1295
|
30
|
Chris@1295
|
31 <% html_title(l(:label_tracker_plural)) -%>
|