##// 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.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <%= link_to l(:label_issue_status_new), new_issue_status_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= link_to(l(:label_update_issue_done_ratios), update_issue_done_ratio_issue_statuses_path, :class => 'icon icon-multiple', :method => 'post', :data => {:confirm => l(:text_are_you_sure)}) if Issue.use_status_for_done_ratio? %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_issue_status_plural)%></h2>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list issue_statuses">
Jean-Philippe Lang
css cleaning...
r105 <thead><tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_status)%></th>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
<th><%=l(:field_done_ratio)%></th>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_is_closed)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219 <tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for status in @issue_statuses %>
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 status.name, edit_issue_status_path(status) %></td>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td><%= status.default_done_ratio %></td>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% end %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td><%= checked_image status.is_closed? %></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(status) %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link issue_status_path(status) %>
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_issue_status_plural)) -%>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954
<%= javascript_tag do %>
$(function() { $("table.issue_statuses tbody").positionedItems(); });
<% end %>