summaryrefslogtreecommitdiffstats
path: root/app/views/trackers/list.rhtml
blob: 1885626843e91eaf8545bb4bd0f9304e8c7ece8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="contextual">
<%= link_to l(:label_tracker_new), {:action => 'new'}, :class => 'pic picAdd' %>
</div>

<h2><%=l(:label_tracker_plural)%></h2>

<table class="list">
  <thead><tr>
  <th><%=l(:label_tracker)%></th>
  <th></th>
  </tr></thead>
  <tbody>
<% 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 %>
  </tbody>
</table>

<%= pagination_links_full @tracker_pages %>