summaryrefslogtreecommitdiffstats
path: root/app/views/trackers/list.rhtml
blob: 8d4a5c59543deacd95c5afcce1fe8d1c9d09faf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<h2><%=l(:label_tracker_plural)%></h2>

<table class="listTableContent">
  <tr class="ListHead">
  <th><%=l(:label_tracker)%></th>
  <th></th>
  </tr>
  
<% for tracker in @trackers %>
  <tr class="<%= cycle("odd", "even") %>">
  <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td>
  <td align="center">
    <%= button_to l(:button_delete), { :action => 'destroy', :id => tracker }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
  </td>
  </tr>
<% end %>
</table>

<%= pagination_links_full @tracker_pages %>
<br />

<%= link_to '&#187; ' + l(:label_tracker_new), :action => 'new' %>