13 lines
404 B
Plaintext
13 lines
404 B
Plaintext
<%
|
|
if current_user.nil?
|
|
t=choice.text
|
|
else
|
|
value=(current_user.id.nil?)? false : choice.answers.where(user_id: current_user.id).count>0
|
|
cstyle=(value) ? "true" :"false"
|
|
t= link_to ((value)? fa_icon("arrow-right"): "")+choice.text, answer_survey_question_path(choice.question, class: "choice-"+cstyle, params: {survey_question: {selected: [choice.id]}})
|
|
end
|
|
|
|
%>
|
|
<%= t %>
|
|
<%= ff_icon("ffi2-boy12") %>
|