<% @tabs.each do |tab| %>
- ">
<%= link_to({ controller: "authors", action: tab[:action], id: @author}, { data: { toggle: 'tab', target: tab[:action] }, remote: true }) do %>
<%= tab[:label] %>
<% end %>
<% end %>
<% @tabs.each do |tab|
if tab[:active] %>
<%= render(partial: "authors/#{ tab[:action]}") %>
<% end
end %>