<%= 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'), '/' %>
Survey |
Action |
<%= render partial: "survey", collection: @surveys %>
<% if defined?(Kaminari) %>
<%= paginate @surveys %>
<% end %>