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