##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14954:42b5c332b2c2
r15119:53710d80fc88
Show More
index.html.erb
38 lines | 1.0 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified trackers....
r7768 <%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
Code cleanup, use named routes....
r10848 <%= link_to l(:field_summary), fields_trackers_path, :class => 'icon icon-summary' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_tracker_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list trackers">
Jean-Philippe Lang
css cleaning...
r105 <thead><tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:label_tracker)%></th>
Jean-Philippe Lang
Added a warning message on tracker list for trackers that don't have any workflow defined....
r427 <th></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for tracker in @trackers %>
Jean-Philippe Lang
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= link_to tracker.name, edit_tracker_path(tracker) %></td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td>
Jean-Philippe Lang
Code cleanup, use named routes....
r10848 <% unless tracker.workflow_rules.count > 0 %>
<span class="icon icon-warning">
<%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>)
</span>
<% end %>
</td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <%= reorder_handle(tracker) %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link tracker_path(tracker) %>
Jean-Philippe Lang
Initial commit...
r2 </td>
</tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_tracker_plural)) -%>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954
<%= javascript_tag do %>
$(function() { $("table.trackers tbody").positionedItems(); });
<% end %>