summaryrefslogtreecommitdiff
path: root/app/views/layouts/_navigation.html.haml
blob: 992aa46ac63f27d4a2b81a4b2a97fe71ce6f0c4d (plain)
1
2
3
4
5
6
7
%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)
  - # will want link for identity settings
  = link_to_navigation t(:support_tickets), auto_tickets_path, :active => controller?(:tickets)
  = link_to_navigation t(:billing_settings), billing_top_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) if APP_CONFIG[:payment].present?
  = link_to_navigation t(:logout), logout_path, :method => :delete