gitlabhq/app/views/layouts/_head_panel.html.haml

38 lines
1.2 KiB
Plaintext
Raw Normal View History

2012-01-12 08:04:57 +01:00
/ Page Header
2012-01-12 08:28:57 +01:00
%header.top_panel_holder
2012-04-10 07:51:08 +02:00
.container
2012-01-16 20:07:57 +01:00
.top_panel_content
2012-02-09 23:07:49 +01:00
%div.app_logo
= link_to root_path, class: "home", title: "Home" do
%h1
GITLAB
2012-04-22 15:01:59 +02:00
%span.separator
%h1.project_name= title
2012-03-16 00:14:39 +01:00
.search
= form_tag search_path, method: :get do |f|
= text_field_tag "search", nil, placeholder: "Search", class: "search-input"
.fbtn
- if current_user.is_admin?
= link_to admin_root_path, class: "btn small", title: "Admin area" do
%i.icon-cog
Admin
- if current_user.can_create_project?
= link_to new_project_path, class: "btn small", title: "Create New Project" do
%i.icon-plus
Project
2012-01-16 20:07:57 +01:00
.account-box
= link_to profile_path, class: "pic" do
2012-01-16 20:07:57 +01:00
= image_tag gravatar_icon(current_user.email)
.account-links
= link_to profile_path, class: "username" do
2012-01-16 20:07:57 +01:00
My profile
= link_to 'Logout', destroy_user_session_path, class: "logout", method: :delete
:javascript
$(function(){
$("#search").autocomplete({
source: #{raw search_autocomplete_source},
select: function(event, ui) { location.href = ui.item.url }
});
});