Question
<%= @question.details %>
<%= link_to 'Answers', survey_admin_question_answers_url(@question) %>
<% if @question.answers.empty? %>
There are currently no answers for this question.
<% else %>
<% @question.answers.each do |answer| %>
- >
<%= link_to answer.display_position, survey_admin_question_answer_url(@question, answer) %>)
<%= answer.details %>
<% end %>
<% end %>
<%= link_to "Edit", edit_survey_admin_question_path(@question), :class => 'button' %> |
<%= link_to "Inactivate", survey_admin_question_path(@question),
:confirm => 'Are you sure?',
:method => :delete,
:class => 'button' %> |
<%= link_to "View Questions", survey_admin_questions_path, :class => 'button' %>