Add a link to a user's home location if they have one.
This commit is contained in:
parent
997aaf1f1a
commit
da950bbfb4
1 changed files with 3 additions and 0 deletions
|
@ -26,6 +26,9 @@
|
|||
<% if @user and @user.id %>
|
||||
Welcome, <%= link_to @user.display_name, {:controller => 'user', :action => 'view', :display_name => @user.display_name}%> |
|
||||
<% @inbox_weight = 'bold' if @user.get_new_messages.length > 0 %>
|
||||
<% if !@user.home_lon.nil? and !@user.home_lat.nil? %>
|
||||
<%= link_to 'home', {:controller => 'site', :action => 'index', :lon => @user.home_lon, :lat => @user.home_lat, :zoom => '10'} %> |
|
||||
<% end %>
|
||||
<%= link_to "inbox (#{@user.get_new_messages.length})", {:controller => 'message', :action => 'inbox', :display_name => @user.display_name}, {:style => "font-weight: #{@inbox_weight};" } %> |
|
||||
<%= link_to 'logout', {:controller => 'user', :action => 'logout', :referer => request.request_uri}, {:id => 'logoutanchor'}%>
|
||||
<% else %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue