<%= params[:active].to_i == 0 ? "In-A" : "A" %>ctive Surveys

<% if can_administer? %> <%= link_to "New Survey", new_survey_path %> | <% if params[:active].to_i == 0 %> <%= link_to "View Active Surveys", surveys_path(active: 1) %> <% else %> <%= link_to "View Inactive Surveys", surveys_path(active: 0) %> <% end %> <% end %>

<%= link_to t('Back to home'), '/' %>


<%= render partial: "survey", collection: @surveys %>
Survey Action
<% if defined?(Kaminari) %> <%= paginate @surveys %> <% end %>