summaryrefslogtreecommitdiff
path: root/app/views/layouts/_navigation.html.haml
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-07-04 01:35:49 -0700
committerelijah <elijah@riseup.net>2013-07-04 01:35:49 -0700
commitc96f3544c5e7289eb4157981cc9f680d689d861f (patch)
tree09c090e59b9b20404260634994116c1092f24df3 /app/views/layouts/_navigation.html.haml
parent65fed45ce918011dd3e563b114651d434fadb23c (diff)
help - fix ticket navigation & links (use @user, not user).
Diffstat (limited to 'app/views/layouts/_navigation.html.haml')
-rw-r--r--app/views/layouts/_navigation.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/layouts/_navigation.html.haml b/app/views/layouts/_navigation.html.haml
index cbe6d3a..b42c1fe 100644
--- a/app/views/layouts/_navigation.html.haml
+++ b/app/views/layouts/_navigation.html.haml
@@ -1,6 +1,6 @@
%ul.nav.sidenav
- = link_to_navigation t(:overview), user_overview_path(user), :active => controller?(:overviews)
- = link_to_navigation t(:account_settings), edit_user_path(user), :active => controller?(:users)
- = link_to_navigation t(:email_settings), edit_user_email_settings_path(user), :active => controller?(:email_settings)
- = link_to_navigation t(:support_tickets), auto_tickets_path(user), :active => controller?(:tickets)
+ = link_to_navigation t(:overview), user_overview_path(@user), :active => controller?(:overviews)
+ = link_to_navigation t(:account_settings), edit_user_path(@user), :active => controller?(:users)
+ = link_to_navigation t(:email_settings), edit_user_email_settings_path(@user), :active => controller?(:email_settings)
+ = link_to_navigation t(:support_tickets), auto_tickets_path(@user), :active => controller?(:tickets)
= link_to_navigation t(:logout), logout_path, :method => :delete