.igreen-tabs.center-block.pt15 ul.nav.nav-tabs li.active = link_to 'Asked', questions_path(tab: 'asked'), data: {toggle: :tab, target: '#questions-asked'} li = link_to 'Pending', questions_path(tab: 'pending'), data: {toggle: :tab, target: '#questions-pending'} li = link_to 'Ongoing', questions_path(tab: 'ongoing'), data: {toggle: :tab, target: '#questions-ongoing'} li = link_to 'Answered', questions_path(tab: 'answered'), data: {toggle: :tab, target: '#questions-answered'} .tab-content #questions-asked.tab-pane = render 'questions/index/asked', questions: @questions #questions-pending.tab-pane = render 'questions/index/pending', questions: @questions #questions-ongoing.tab-pane = render 'questions/index/ongoing', questions: @questions #questions-answered.tab-pane = render 'questions/index/answered', questions: @questions