mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
11 lines
434 B
Text
11 lines
434 B
Text
<%= form_tag :controller => "users", :action => "logout" do %>
|
|
<li><%= link_to 'Profile', edit_user_path(cuser) %></li>
|
|
<li><%= link_to 'Agenda', "/users/agenda/#{cuser.id}" %></li>
|
|
<li>
|
|
<%= link_to 'PMs', messages_path() %>
|
|
<% if c = cuser.new_messages.count > 0 %>
|
|
(<%= cuser.new_messages.count %>)
|
|
<% end %>
|
|
</li>
|
|
<li><%= link_to_function "Logout", '$(this).closest("form").submit();' %></li>
|
|
<% end %>
|