diff --git a/app/views/layouts/_new_header.html.erb b/app/views/layouts/_new_header.html.erb
index 46a2eff63..f26317acd 100644
--- a/app/views/layouts/_new_header.html.erb
+++ b/app/views/layouts/_new_header.html.erb
@@ -20,19 +20,6 @@
<%= link_to "#{User.current.login}".html_safe, {:controller=> 'users', :action => 'show', id: User.current.id, host: Setting.host_user}, target:"_blank", :class => "uses_name"%>
<% end %>
<% end %>
+
+ <% unless User.current.projects.empty? %>
+
+ <%= link_to l(:label_my_projects), {:controller => 'users', :action => 'user_projects', id: User.current.id, host: Setting.host_name},target:"_blank", :class => "parent" %>
+
+ <% User.current.projects.each do |project| %>
+ -
+ <%= link_to project.name, {:controller => 'projects', :action => 'show',id: project.id, host: Setting.host_name }, target:"_blank" %>
+
+ <% end %>
+
+
+ <% end %>
<%=link_to l(:label_user_edit), {:controller => 'my', :action=> 'account', host: Setting.host_user}%>