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