From: Tom Hughes Date: Sat, 28 Jul 2007 16:39:44 +0000 (+0000) Subject: Add a link to a user's home location if they have one. X-Git-Tag: live~8238 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/da950bbfb43e634abdd512255e1c6440ffa52fa4 Add a link to a user's home location if they have one. --- diff --git a/app/views/layouts/site.rhtml b/app/views/layouts/site.rhtml index c2e831bf7..601e7b0bd 100644 --- a/app/views/layouts/site.rhtml +++ b/app/views/layouts/site.rhtml @@ -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 %>