Files
fetsite/app/views/survey/questions/show.html.erb
2015-07-30 02:03:02 +02:00

25 lines
511 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<b>Title:</b>
<%= @survey_question.title %>
</p>
<p>
<b>Text:</b>
<%= @survey_question.text %>
</p><p>
<%= params.to_yaml %>
</p>
<%= params[:survey_question][:selected].map{|c|c.to_i}.to_yaml %>
<p>
<b>Typ:</b>
<%= @survey_question.typ %>
</p>
<%= render @survey_question %>
<%= render partial: "answeredquestion", object: @survey_question %>
<%= link_to 'Edit', edit_survey_question_path(@survey_question) %> |
<%= link_to 'Back', survey_questions_path %>