You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html.erb 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. <div class="contextual">
  2. <%= link_to l(:label_tracker_new), {:action => 'new'}, :class => 'icon icon-add' %>
  3. </div>
  4. <h2><%=l(:label_tracker_plural)%></h2>
  5. <table class="list">
  6. <thead><tr>
  7. <th><%=l(:label_tracker)%></th>
  8. <th></th>
  9. <th><%=l(:button_sort)%></th>
  10. <th></th>
  11. </tr></thead>
  12. <tbody>
  13. <% for tracker in @trackers %>
  14. <tr class="<%= cycle("odd", "even") %>">
  15. <td><%= link_to h(tracker.name), :action => 'edit', :id => tracker %></td>
  16. <td align="center"><% unless tracker.workflows.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>
  17. <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'edit', :id => tracker}) %></td>
  18. <td class="buttons">
  19. <%= link_to(l(:button_delete), { :action => 'destroy', :id => tracker },
  20. :method => :post,
  21. :confirm => l(:text_are_you_sure),
  22. :class => 'icon icon-del') %>
  23. </td>
  24. </tr>
  25. <% end %>
  26. </tbody>
  27. </table>
  28. <p class="pagination"><%= pagination_links_full @tracker_pages %></p>
  29. <% html_title(l(:label_tracker_plural)) -%>