Commit 239cccb21cf998b5178a09894b680db226d6b68c

Authored by AntonioTerceiro
1 parent 3769f169

ActionItem9: better index for users



git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@132 3f533792-8f58-4932-b0fe-aaf55b0a4547
app/views/account/index.rhtml
  1 +<p>
  2 +<%= link_to _('Change password.'), :action => 'change_password' %>
  3 +<%= _('It is a good idea to change your password from times to times.') %>
  4 +</p>
1 5  
2   -<%= link_to _('Change password'), :action => 'change_password' %>
3   -<%= link_to _('Edit Personal details'), :action => 'edit_details' %>
4   -<%= link_to _('Logout'), :action => 'logout' %>
  6 +<p>
  7 +<%= link_to _('Edit Personal details.'), :action => 'edit_details' %>
  8 +<%= _('You can change your personal details.') %>
  9 +</p>
  10 +
  11 +<p>
  12 +<%= link_to _('Logout.'), :action => 'logout' %>
  13 +<%= _('It is always a good idea to make a logout when you finish using.')%>
  14 +</p>
... ...
app/views/layouts/account.rhtml
... ... @@ -6,6 +6,8 @@
6 6  
7 7 </head>
8 8 <body>
  9 + <%= virtual_community_identification %>
  10 + <%= user_links %>
9 11  
10 12 <div id='main'>
11 13 <%= yield %>
... ...
app/views/layouts/virtual_community_admin.rhtml
... ... @@ -7,6 +7,9 @@
7 7 </head>
8 8 <body>
9 9  
  10 + <%= virtual_community_identification %>
  11 + <%= user_links %>
  12 +
10 13 <div id='main'>
11 14 <%= yield %>
12 15 </div>
... ...