forked from bofh/fetsite
15 lines
453 B
Plaintext
15 lines
453 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 raw("" + choice.html), answer_survey_question_path(choice.question, params: {survey_question: {selected: [choice.id]}}),class: "choice-"+cstyle
|
|
end
|
|
|
|
%>
|
|
|
|
|
|
<%= t %> <%= link_to fa_icon("pencil"), edit_survey_choice_path(choice) , class: "btn btn-link navbar-btn"
|
|
%>
|