Mercurial > hg > soundsoftware-site
annotate .svn/pristine/6b/6be65077afa803bdec605ecec12428554273b481.svn-base @ 1327:287f201c2802 redmine-2.2-integration
Add italic
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 19 Jun 2013 20:56:22 +0100 |
parents | 038ba2d95de8 |
children |
rev | line source |
---|---|
Chris@1296 | 1 <div class="contextual"> |
Chris@1296 | 2 <%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %> |
Chris@1296 | 3 <%= link_to l(:field_summary), {:action => 'fields'}, :class => 'icon icon-summary' %> |
Chris@1296 | 4 </div> |
Chris@1296 | 5 |
Chris@1296 | 6 <h2><%=l(:label_tracker_plural)%></h2> |
Chris@1296 | 7 |
Chris@1296 | 8 <table class="list"> |
Chris@1296 | 9 <thead><tr> |
Chris@1296 | 10 <th><%=l(:label_tracker)%></th> |
Chris@1296 | 11 <th></th> |
Chris@1296 | 12 <th><%=l(:button_sort)%></th> |
Chris@1296 | 13 <th></th> |
Chris@1296 | 14 </tr></thead> |
Chris@1296 | 15 <tbody> |
Chris@1296 | 16 <% for tracker in @trackers %> |
Chris@1296 | 17 <tr class="<%= cycle("odd", "even") %>"> |
Chris@1296 | 18 <td><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td> |
Chris@1296 | 19 <td align="center"><% unless tracker.workflow_rules.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> |
Chris@1296 | 20 <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %></td> |
Chris@1296 | 21 <td class="buttons"> |
Chris@1296 | 22 <%= delete_link tracker_path(tracker) %> |
Chris@1296 | 23 </td> |
Chris@1296 | 24 </tr> |
Chris@1296 | 25 <% end %> |
Chris@1296 | 26 </tbody> |
Chris@1296 | 27 </table> |
Chris@1296 | 28 |
Chris@1296 | 29 <p class="pagination"><%= pagination_links_full @tracker_pages %></p> |
Chris@1296 | 30 |
Chris@1296 | 31 <% html_title(l(:label_tracker_plural)) -%> |