sqm-dashboards/app/views/questions/show.html.erb
2017-03-03 22:00:07 -05:00

39 lines
581 B
Text

<p id="notice"><%= notice %></p>
<p>
<strong>Text:</strong>
<%= @question.text %>
</p>
<p>
<strong>Option1:</strong>
<%= @question.option1 %>
</p>
<p>
<strong>Option2:</strong>
<%= @question.option2 %>
</p>
<p>
<strong>Option3:</strong>
<%= @question.option3 %>
</p>
<p>
<strong>Option4:</strong>
<%= @question.option4 %>
</p>
<p>
<strong>Option5:</strong>
<%= @question.option5 %>
</p>
<p>
<strong>Category:</strong>
<%= @question.category_id %>
</p>
<%= link_to 'Edit', edit_question_path(@question) %> |
<%= link_to 'Back', questions_path %>