%= stylesheet_link_tag "survey_says" %>
<%= javascript_include_tag "survey_says" %>
<%= csrf_meta_tag %>
<%= yield(:head) %>
<% flash.each do |name, msg| %>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<% end %>
<%#= content_tag :h1, yield(:title) if show_title? %>
<%= yield %>
- <%= link_to "Questionnaires", survey_admin_questionnaires_path() %>
- <%= link_to "Questions", survey_admin_questions_path() %>
<% if @question.try(:id) || @answer.try(:id) %>
-
<%= link_to "Answers", survey_admin_question_answers_path(@question) %>
<% elsif @answer.try(:id) %>
-
<%= link_to "Answers", survey_admin_question_answers_path(@answer.question) %>
<% end %>
<%= link_to 'Properties', survey_admin_survey_properties_url %>