Sha256: 8f33be747d24dd5244130276b09ecdb5ce0b32997028da31198ea51281aae4f5

Contents?: true

Size: 370 Bytes

Versions: 15

Compression:

Stored size: 370 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})", result_path(survey.access_code) %></td>
  </tr>
<% end %>
</table>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
surveyor-0.21.0 app/views/results/index.html.erb
surveyor-0.20.0 app/views/results/index.html.erb
surveyor-0.19.7 app/views/results/index.html.erb
surveyor-0.19.6 app/views/results/index.html.erb
surveyor-0.19.5 app/views/results/index.html.erb
surveyor-0.19.4 app/views/results/index.html.erb
surveyor-0.19.3 app/views/results/index.html.erb
surveyor-0.19.2 app/views/results/index.html.erb
surveyor-0.19.1 app/views/results/index.html.erb
surveyor-0.19.0 app/views/results/index.html.erb
surveyor-0.18.2 app/views/results/index.html.erb
surveyor-0.18.1 app/views/results/index.html.erb
surveyor-0.18.0 app/views/results/index.html.erb
surveyor-0.17.0 app/views/results/index.html.erb
surveyor-0.16.1 app/views/results/index.html.erb