Sha256: 69ea808a50bb82f0e11902a01e14715073af6d9eb160a27487c3f69c6711cc74

Contents?: true

Size: 375 Bytes

Versions: 6

Compression:

Stored size: 375 Bytes

Contents

<h1>Listing Surveys</h1>

<table class="list_table">
  <tr>
    <th>ID</th>
    <th>Name</th>
    <th>Operation</th>
  </tr>

<% @surveys.each do |survey| -%>
  <tr>
    <td><%=h survey.id %></td>
    <td><%=h survey.title %></td>
    <td><%= link_to "show results list(#{survey.response_sets.count})", show_one_survey_results_path(survey) %></td>
  </tr>
<% end %>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
surveyor-0.16.0 app/views/results/index.html.erb
surveyor-0.15.0 app/views/results/index.html.erb
surveyor-0.14.5 app/views/results/index.html.erb
surveyor-0.14.4 app/views/results/index.html.erb
surveyor-0.14.3 app/views/results/index.html.erb
surveyor-0.14.2 app/views/results/index.html.erb