blob: 0e8e5c33024e58bc0081c53650a8666ee59e89e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<div class="contextual">
<%= link_to l(:label_tracker_new), {:action => 'new'}, :class => 'pic picAdd' %>
</div>
<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 %>
|