Mercurial > hg > soundsoftware-site
annotate .svn/pristine/e1/e1ad86bd8b03d1da8aaeee9d7e65258a3424ffe8.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 11 Sep 2014 10:24:38 +0100 |
parents | 261b3d9a4903 |
children |
rev | line source |
---|---|
Chris@1464 | 1 <div class="contextual"> |
Chris@1464 | 2 <%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %> |
Chris@1464 | 3 <%= link_to l(:field_summary), fields_trackers_path, :class => 'icon icon-summary' %> |
Chris@1464 | 4 </div> |
Chris@1464 | 5 |
Chris@1464 | 6 <h2><%=l(:label_tracker_plural)%></h2> |
Chris@1464 | 7 |
Chris@1464 | 8 <table class="list"> |
Chris@1464 | 9 <thead><tr> |
Chris@1464 | 10 <th><%=l(:label_tracker)%></th> |
Chris@1464 | 11 <th></th> |
Chris@1464 | 12 <th><%=l(:button_sort)%></th> |
Chris@1464 | 13 <th></th> |
Chris@1464 | 14 </tr></thead> |
Chris@1464 | 15 <tbody> |
Chris@1464 | 16 <% for tracker in @trackers %> |
Chris@1464 | 17 <tr class="<%= cycle("odd", "even") %>"> |
Chris@1464 | 18 <td class="name"><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td> |
Chris@1464 | 19 <td> |
Chris@1464 | 20 <% unless tracker.workflow_rules.count > 0 %> |
Chris@1464 | 21 <span class="icon icon-warning"> |
Chris@1464 | 22 <%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>) |
Chris@1464 | 23 </span> |
Chris@1464 | 24 <% end %> |
Chris@1464 | 25 </td> |
Chris@1464 | 26 <td class="reorder"> |
Chris@1464 | 27 <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %> |
Chris@1464 | 28 </td> |
Chris@1464 | 29 <td class="buttons"> |
Chris@1464 | 30 <%= delete_link tracker_path(tracker) %> |
Chris@1464 | 31 </td> |
Chris@1464 | 32 </tr> |
Chris@1464 | 33 <% end %> |
Chris@1464 | 34 </tbody> |
Chris@1464 | 35 </table> |
Chris@1464 | 36 |
Chris@1464 | 37 <p class="pagination"><%= pagination_links_full @tracker_pages %></p> |
Chris@1464 | 38 |
Chris@1464 | 39 <% html_title(l(:label_tracker_plural)) -%> |