<% poll.poll_questions.each do |poll_question|%>
<% if poll_question.question_type == 1%> <%= render :partial => 'show_MC', :locals => {:poll_question => poll_question} %> <% elsif poll_question.question_type == 2%> <%= render :partial => 'show_MCQ', :locals => {:poll_question => poll_question} %> <% elsif poll_question.question_type == 3%> <%= render :partial => 'show_single', :locals => {:poll_question => poll_question} %> <% elsif poll_question.question_type == 4%> <%= render :partial => 'show_mulit', :locals => {:poll_question => poll_question} %> <% end%>
<% end %>