Commit f0ebecbe6775f797693ac121d2edebd6dce56d8b
1 parent
309e733a
Exists in
master
and in
28 other branches
ActionItem65: added som links to facilitate browsing
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@586 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
3 changed files
with
7 additions
and
0 deletions
Show diff stats
app/views/role/_form.rhtml
app/views/role/index.rhtml
app/views/role/show.rhtml
1 | <h1> <%= _(@role.name) %></h1> | 1 | <h1> <%= _(@role.name) %></h1> |
2 | + | ||
3 | +<h3> <%= _('Permissions') %> </h3> | ||
2 | <ul> | 4 | <ul> |
3 | <% @role.permissions.each do |p| %> | 5 | <% @role.permissions.each do |p| %> |
4 | <li> <%= Role.permission_name(p) %> </li> | 6 | <li> <%= Role.permission_name(p) %> </li> |
5 | <% end %> | 7 | <% end %> |
6 | </ul> | 8 | </ul> |
9 | + | ||
10 | +<%= link_to _('Back'), :action => 'index' %> |