##// END OF EJS Templates
Adds setting_new_project_issue_tab_enabled i18n string (#6204)....
Adds setting_new_project_issue_tab_enabled i18n string (#6204). git-svn-id: http://svn.redmine.org/redmine/trunk@15408 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14954:42b5c332b2c2
r15026:3bdf6e995a35
Show More
index.html.erb
30 lines | 1020 B | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified roles....
r8025 <%= link_to l(:label_role_new), new_role_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
Code cleanup, use named routes....
r10848 <%= link_to l(:label_permissions_report), permissions_roles_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_role_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list roles">
Jean-Philippe Lang
css cleaning...
r105 <thead><tr>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <th><%=l(:label_role)%></th>
Toshi MARUYAMA
replace tabs to spaces at app/views/roles/index.html.erb...
r7272 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for role in @roles %>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <tr class="<%= cycle("odd", "even") %> <%= role.builtin? ? "builtin" : "givable" %>">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, edit_role_path(role))) %></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(role) unless role.builtin? %>
Jean-Philippe Lang
Create role by copy (#9258)....
r10102 <%= link_to l(:button_copy), new_role_path(:copy => role), :class => 'icon icon-copy' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link role_path(role) unless role.builtin? %>
Jean-Philippe Lang
Add some tests on RolesController....
r1254 </td>
Jean-Philippe Lang
Initial commit...
r2 </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_role_plural)) -%>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954
<%= javascript_tag do %>
$(function() { $("table.roles tbody").positionedItems({items: ".givable"}); });
<% end %>