blob: fb018a9350334935e3599f7a2878c83ccef6d986 (
plain)
1
2
3
4
5
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(:support_tickets), auto_tickets_path, :active => controller?(:tickets)
= link_to_navigation t(:billing_settings), show_or_new_customer_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) if engine_enabled('LeapWebBilling')
= link_to_navigation t(:logout), logout_path, :method => :delete
|