diff options
author | elijah <elijah@riseup.net> | 2013-07-04 01:35:49 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-07-04 04:15:04 -0700 |
commit | adacb11c8ff6395f38c3c05bea4e6d276285118f (patch) | |
tree | 13038a0c965bdb0bb6a86bcc35f7ad925c2e6433 /app/views/layouts/_header.html.haml | |
parent | 2d36a6b68099af39f2bc84a32d67b83f6041ca28 (diff) |
help - fix ticket navigation & links (use @user, not user).
Diffstat (limited to 'app/views/layouts/_header.html.haml')
-rw-r--r-- | app/views/layouts/_header.html.haml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/layouts/_header.html.haml b/app/views/layouts/_header.html.haml index 854ab40..b459545 100644 --- a/app/views/layouts/_header.html.haml +++ b/app/views/layouts/_header.html.haml @@ -4,6 +4,8 @@ = link_to t(:users), users_path %li{:class => ("active" if controller?('tickets') && !params[:user_id])} = link_to t(:tickets), tickets_path -- if user && @show_navigation + %li + = link_to t(:logout), logout_path, :method => :delete +- if @user && @show_navigation .user_heading - = user.email_address + = @user.email_address |