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

_head_panel.html.erb « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6f36e3fd06c886a26caddd7984511ba4d96345f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!-- Page Header -->
<header>
<h1 class="logo">
  <a href="/">GITLAB</a></h1>
  <div class="login-top">
        <%= link_to profile_path, :class => "pic" do %>
          <%= image_tag gravatar_icon(current_user.email) %>
        <% end %>
        <%= link_to profile_path, :class => "username" do %>
          <%= current_user.name %> 
        <% end %>
        <%= link_to 'Logout', destroy_user_session_path, :class => "logout", :method => :delete %>
  </div>
  <!-- .login-top -->
  <nav>
    <%= link_to root_path, :class => current_page?(root_path) ? "current dashboard" : "dashboard" do %>
      <span></span>Dashboard
    <% end %>
    <%= link_to projects_path, :class => current_page?(projects_path) ? "current project" : "project" do %>
      <span></span>Projects
    <% end %>
    <%= link_to( admin_root_path, :class => admin_namespace? ? "current admin" : "admin" ) do %>
      <span></span>Admin
    <% end if current_user.is_admin? %>
  </nav>
</header>
<!-- eo Page Header -->

<div id="header-panel" style="display:none">
  <div class="container">
    <div class="span-24">
      <div class="span-10">
        <span class="search-holder">
          <%= text_field_tag "search", nil, :placeholder => "Search"  %>
        </span>
      </div>
      <div class="right">
        <%= link_to truncate(@project.name, :length => 20), project_path(@project), :class => "current button" if @project && !@project.new_record? %>
      </div>
    </div>
  </div>
</div>

<% if current_user %>
  <%= javascript_tag do %>
    $(function() {
      $("#search" ).autocomplete({
        source: <%= raw search_autocomplete_source %>,
        select: function(event, ui) { location.href = ui.item.url }
        });
    });
  <% end %>
<% end %>