Sha256: 244c5e12d19157e6a66ac540409a0a92d071144e5ff78dccf28809c4f72c1577
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
<h1> Answer </h1> <p> <strong>Question:</strong> <%= link_to @answer.question.details, survey_admin_question_path(@answer.question) %> </p> <p> <strong>Details:</strong> <%= @answer.details %> </p> <p> <strong>Active:</strong> <%= @answer.active %> </p> <p> <strong>Position:</strong> <%= @answer.position %> </p> <p> <strong>Properties:</strong> <ul class='span7'> <% @answer.scores.each do |score| %> <li style='padding:6px;'> <label style='padding:0px 5px 0 0;'> <%= score.survey_property.name %>:</label> <%= score.value %> </li> <% end %> </ul> <div class='span3'> <%= image_tag @answer.image unless @answer.image.blank? %> </div> </p> <p> <%= link_to "Edit", edit_survey_admin_question_answer_path(@answer.question, @answer), :class => 'button' %> | <%= link_to "Destroy", [:survey_admin, @answer.question, @answer], :confirm => 'Are you sure?', :method => :delete, :class => 'button' %> | <%= link_to "View Answers", survey_admin_question_answers_path(@answer.question), :class => 'button' %> </p>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
survey_says-0.0.2 | app/views/survey_admin/answers/show.html.erb |
survey_says-0.0.1 | app/views/survey_admin/answers/show.html.erb |