2012-01-12 08:04:57 +01:00
|
|
|
/ Page Header
|
2012-01-12 08:28:57 +01:00
|
|
|
%header.top_panel_holder
|
2012-01-15 18:42:20 +01:00
|
|
|
.wrapper
|
2012-01-16 20:07:57 +01:00
|
|
|
.top_panel_content
|
2012-02-09 23:07:49 +01:00
|
|
|
%div.app_logo
|
2012-01-16 20:07:57 +01:00
|
|
|
= link_to root_path, :class => "home", :title => "Home" do
|
2012-02-09 23:07:49 +01:00
|
|
|
= image_tag "logo_tr.png", :width => 50
|
2012-02-28 21:59:36 +01:00
|
|
|
%h1
|
|
|
|
GITLAB
|
|
|
|
|
|
|
|
= link_to admin_projects_path, :class => "admin_link", :title => "Admin area" do
|
|
|
|
= image_tag "admin.PNG", :width => 16
|
2012-01-12 08:28:57 +01:00
|
|
|
|
2012-02-09 08:59:14 +01:00
|
|
|
%h1.project_name= title
|
2012-02-09 23:07:49 +01:00
|
|
|
.search= text_field_tag "search", nil, :placeholder => "Search", :class => "search-input"
|
2012-01-13 22:13:44 +01:00
|
|
|
|
2012-01-12 08:04:57 +01:00
|
|
|
|
2012-01-16 20:07:57 +01:00
|
|
|
.account-box
|
|
|
|
= link_to profile_path, :class => "pic" do
|
|
|
|
= image_tag gravatar_icon(current_user.email)
|
|
|
|
.account-links
|
|
|
|
= link_to profile_path, :class => "username" do
|
|
|
|
My profile
|
|
|
|
= link_to 'Logout', destroy_user_session_path, :class => "logout", :method => :delete
|
2012-02-09 08:59:14 +01:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function(){
|
|
|
|
$("#search").autocomplete({
|
|
|
|
source: #{raw search_autocomplete_source},
|
|
|
|
select: function(event, ui) { location.href = ui.item.url }
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keypress(function(e) {
|
|
|
|
if( $(e.target).is(":input") ) return;
|
|
|
|
switch(e.which) {
|
|
|
|
case 115: focusSearch();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|