Sha256: 5a5ea0888b5c548094b9a681d3664b3852169ac58678bab59901de5a085a3158

Contents?: true

Size: 571 Bytes

Versions: 15

Compression:

Stored size: 571 Bytes

Contents

<table class="list_table">
  <tr>
    <th>ID</th>
    <th>Code</th>
	<% @questions.each do |question| %>
		<% next if question.display_order == 1 %>
		<th><%= "[" +question.display_order.to_s + "]" + question.text  %></th>
	<% end %>
  </tr>

<% @response_sets.each do |r_set| %>
  <tr>
    <td><%=h r_set.id %></td>
    <td><%=h r_set.access_code %></td>
	<% @questions.each do |question| %>
		<% next if question.display_order == 1 %>
		<td><%= display_response(r_set,question) %></td>
	<% end %>
  </tr>
<% end %>
</table>

<br />

<%= link_to "Back", results_path %>

Version data entries

15 entries across 15 versions & 1 rubygems

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