Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-15 21:37:42 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-15 21:37:42 +0400
commit975d13c734b813feb46be893ddff858d1d4b010b (patch)
treef6611e067b42d686e731d050793a6fd44e6a0436
parentee3a5c98098bcbca1f84532c35910758ff9f9dc3 (diff)
profile in header
-rw-r--r--app/views/layouts/_head_panel.html.erb9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/layouts/_head_panel.html.erb b/app/views/layouts/_head_panel.html.erb
index f32e4bc2b71..047f708b6df 100644
--- a/app/views/layouts/_head_panel.html.erb
+++ b/app/views/layouts/_head_panel.html.erb
@@ -10,12 +10,13 @@
</div>
<div class="right">
<%= link_to truncate(@project.name, :length => 20), project_path(@project), :class => "current button" if @project && !@project.new_record? %>
- <%= link_to 'Home', root_path, :class => current_page?(root_url) ? "current button" : "button" %>
<%= link_to 'Projects', projects_path, :class => current_page?(projects_path) ? "current button" : "button" %>
- <%= link_to 'Profile', profile_path, :class => (controller.controller_name == "keys") ? "current button" : "button" %>
<%= link_to('Admin', admin_root_path, :class => admin_namespace? ? "current button" : "button" ) if current_user.is_admin? %>
- <%#= link_to 'Profile', edit_user_registration_path, :class => "button" %>
- <%= link_to 'Logout', destroy_user_session_path, :class => "button", :method => :delete %>
+ <%= link_to profile_path, :class => ((controller.controller_name == "keys" || controller.controller_name == "profile") ? "current button" : "button") do %>
+ <%= image_tag gravatar_icon(current_user.email) %>
+ <%= current_user.name.split(" ").first %>
+ <% end %>
+ <%= link_to 'Logout', destroy_user_session_path, :style => "border-left: 1px solid #666;", :class => "button", :method => :delete %>
</div>
</div>
</div>