Skip to content

Instantly share code, notes, and snippets.

@supermomonga
Created July 22, 2013 09:40
Show Gist options
  • Save supermomonga/6052639 to your computer and use it in GitHub Desktop.
Save supermomonga/6052639 to your computer and use it in GitHub Desktop.
- pi = request.path_info
%ul.nav.nav-tabs
%li{ class: ['/users/edit'].any? {|p| pi.include? p} ? 'active' : '' }= link_to 'アカウント情報' , :edit_user_registration
%li{ class: ['/creator/new', '/creator/edit'].any? {|p| pi.include? p} ? 'active' : '' }= link_to 'クリエイター情報' , edit_user_creator_path(current_user)
%li{ class: ['/client/new', '/client/edit'].any? {|p| pi.include? p} ? 'active' : '' }= link_to '発注者情報' , edit_user_client_path(current_user)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment