%
data = action_data
@survey = data['survey']
@answer_model = data['answer']
%>
<% if @survey.result_type == 3 %>
Your total score is <%= @answer_model.scored_points %>
<% @survey.result_criteria.each do |criteria| %>
<%
total_criteria_score = 0
((criteria["questions"][0].to_i - 1)..(criteria["questions"][1].to_i - 1)).each do |x|
total_criteria_score = (total_criteria_score + @answer_model.individual_total[x].to_i) rescue 0
end
%>
<% if (criteria["range"][0].to_i..criteria["range"][1].to_i).cover?(total_criteria_score) %>
<%= criteria["msg"].html_safe %>
<% end %>
<% end %>
<% else %>
<%= t('survey.answer_success')%>
<% end %>
Go Back