list.rhtml
32 lines
| 1.7 KiB
| text/html+ruby
|
RhtmlLexer
|
r90 | <div class="contextual"> | |
|
r154 | <%= link_to l(:label_tracker_new), {:action => 'new'}, :class => 'icon icon-add' %> | |
|
r90 | </div> | |
|
r12 | <h2><%=l(:label_tracker_plural)%></h2> | |
|
r2 | ||
|
r105 | <table class="list"> | |
<thead><tr> | |||
|
r330 | <th><%=l(:label_tracker)%></th> | |
|
r427 | <th></th> | |
|
r206 | <th><%=l(:button_sort)%></th> | |
|
r2 | <th></th> | |
|
r105 | </tr></thead> | |
<tbody> | |||
|
r2 | <% for tracker in @trackers %> | |
|
r5 | <tr class="<%= cycle("odd", "even") %>"> | |
|
r2 | <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td> | |
|
r427 | <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => "roles", :action => "workflow", :tracker_id => tracker} %>)</span><% end %></td> | |
|
r400 | <td align="center" style="width:15%;"> | |
|
r206 | <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => tracker, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %> | |
<%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => tracker, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> - | |||
<%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => tracker, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %> | |||
<%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => tracker, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %> | |||
</td> | |||
|
r400 | <td align="center" style="width:10%;"> | |
|
r330 | <%= button_to l(:button_delete), { :action => 'destroy', :id => tracker }, :confirm => l(:text_are_you_sure), :class => "button-small" %> | |
|
r2 | </td> | |
</tr> | |||
<% end %> | |||
|
r105 | </tbody> | |
|
r2 | </table> | |
|
r330 | ||
|
r90 | <%= pagination_links_full @tracker_pages %> |