##// END OF EJS Templates
Create role by copy (#9258)....
Create role by copy (#9258). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10285 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10102:ca7498c2d6cc
r10102:ca7498c2d6cc
Show More
index.html.erb
34 lines | 1.0 KiB | 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
Moved link to the contextual menu....
r10099 <%= link_to l(:label_permissions_report), {:action => 'permissions'}, :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
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <th><%=l(:label_role)%></th>
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 <th><%=l(:button_sort)%></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
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Resourcified roles....
r8025 <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td>
Jean-Philippe Lang
Applied the same column width in different similar views....
r400 <td align="center" style="width:15%;">
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% unless role.builtin? %>
Jean-Philippe Lang
Resourcified roles....
r8025 <%= reorder_links('role', {:action => 'update', :id => role}, :put) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% end %>
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 </td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
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
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @role_pages %></p>
Jean-Philippe Lang
Added permissions report (link available on roles list view)....
r430
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_role_plural)) -%>