24 lines
745 B
Plaintext
24 lines
745 B
Plaintext
<%
|
|
data = action_data
|
|
@survey = data['survey']
|
|
@answer_model = data['answer']
|
|
%>
|
|
|
|
<% if @survey.result_type == 3 %>
|
|
<h3>Your total score is <%= @answer_model.scored_points %> </h3>
|
|
<% @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) %>
|
|
<div> <%= criteria["msg"].html_safe %> </div>
|
|
<% end %>
|
|
<% end %>
|
|
<% else %>
|
|
<h3><%= t('survey.answer_success')%></h3>
|
|
<% end %>
|
|
|
|
<a href="<%= data['url'] %>">Go Back</a> |