2012-01-12 02:04:57 -05:00
|
|
|
/ Page Header
|
2012-01-12 02:28:57 -05:00
|
|
|
%header.top_panel_holder
|
2012-04-10 01:51:08 -04:00
|
|
|
.container
|
2012-01-16 14:07:57 -05:00
|
|
|
.top_panel_content
|
2012-02-09 17:07:49 -05:00
|
|
|
%div.app_logo
|
2012-06-03 18:37:27 -04:00
|
|
|
= link_to root_path, :class => "home", :title => "Home" do
|
|
|
|
%h1
|
2012-02-28 15:59:36 -05:00
|
|
|
GITLAB
|
2012-04-22 09:01:59 -04:00
|
|
|
%span.separator
|
2012-02-09 02:59:14 -05:00
|
|
|
%h1.project_name= title
|
2012-03-15 19:14:39 -04:00
|
|
|
.search
|
|
|
|
= form_tag search_path, :method => :get do |f|
|
|
|
|
= text_field_tag "search", nil, :placeholder => "Search", :class => "search-input"
|
2012-05-19 05:00:46 -04:00
|
|
|
.fbtn
|
|
|
|
- if current_user.is_admin?
|
2012-06-03 18:37:27 -04:00
|
|
|
= link_to admin_root_path, :class => "btn small", :title => "Admin area" do
|
2012-05-19 05:00:46 -04:00
|
|
|
%i.icon-cog
|
|
|
|
Admin
|
|
|
|
- if current_user.can_create_project?
|
2012-06-03 18:37:27 -04:00
|
|
|
= link_to new_project_path, :class => "btn small", :title => "Create New Project" do
|
2012-05-19 05:00:46 -04:00
|
|
|
%i.icon-plus
|
|
|
|
Project
|
2012-01-16 14:07:57 -05: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 02:59:14 -05:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function(){
|
|
|
|
$("#search").autocomplete({
|
|
|
|
source: #{raw search_autocomplete_source},
|
|
|
|
select: function(event, ui) { location.href = ui.item.url }
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keypress(function(e) {
|
2012-03-26 05:11:02 -04:00
|
|
|
if($(e.target).is(":input")) return;
|
2012-02-09 02:59:14 -05:00
|
|
|
switch(e.which) {
|
|
|
|
case 115: focusSearch();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|