Hi I have the following haml:
.btn-group-wrap{style:'text-align:center;'}
.btn-group{style: 'display: inline-block; text-align:center; width:inherit;'}
=link_to "All Users", users_path, class: 'btn active'
=link_to "Search", '#', class:'btn'
I want to be able to toggle back and forth between active class for each of the links. ie if params[:controller] == "users" then I want that to be active. If params[:controller] =="search" then it will make the users class just 'btn' and Search 'btn active'.