forked from bofh/fetsite
12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
<% if current_user.nil? %>
|
|
<%= render partial: "answeredquestion", object: question %>
|
|
<% else %>
|
|
<div style="background:red"><b><%= question.title%></b>
|
|
<ul>
|
|
<% question.choices.each do |c| %>
|
|
<li><%= render c %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|