<%= @title %>

<%= form_tag surveyforms_path, :method => 'get' do %>

<%= text_field_tag :search, params[:search] %> <%= submit_tag "Search", :name => nil %>

<% end %> <%= will_paginate %>
<% for survey in @surveyforms %> <% end %>
Title Version Actions
<%= survey.title %> <%= survey.survey_version %> <%= link_to "Show", survey %>  <%= link_to "Edit", edit_surveyform_path(survey) %>  <%= link_to "Clone", clone_survey_surveyform_path(survey) %>  <%= link_to "Destroy", survey, data: { confirm: 'Are you sure?' }, :method => :delete %>  <%= link_to "Run Report", report_path(survey) %>   <%= link_to "View Responses" , responses_path(id: survey) %>

<%= will_paginate %>

<%= link_to "New Survey", new_surveyform_path() %>  <%= link_to "Take a Survey", surveyor.available_surveys_path %>