diff --git a/app/views/poll/_poll_content.html.erb b/app/views/poll/_poll_content.html.erb
index 6c2e61215..40c9a6181 100644
--- a/app/views/poll/_poll_content.html.erb
+++ b/app/views/poll/_poll_content.html.erb
@@ -1,10 +1,26 @@
<% poll.poll_questions.each do |poll_question|%>
- <%= render :partial => 'show_MC', :locals => {:poll_question => 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%>
- <%= render :partial => 'edit_MC', :locals => {:poll_question => poll_question} %>
+ <% if poll_question.question_type == 1%>
+ <%= render :partial => 'edit_MC', :locals => {:poll_question => poll_question} %>
+ <% elsif poll_question.question_type == 2%>
+ <%= render :partial => 'edit_MCQ', :locals => {:poll_question => poll_question} %>
+ <% elsif poll_question.question_type == 3%>
+ <%= render :partial => 'edit_single', :locals => {:poll_question => poll_question} %>
+ <% elsif poll_question.question_type == 4%>
+ <%= render :partial => 'edit_mulit', :locals => {:poll_question => poll_question} %>
+ <% end%>
<% end %>
\ No newline at end of file