16 lines
487 B
Text
16 lines
487 B
Text
<% content_for(:header) do %>
|
|
<% @sections.each do |section| %>
|
|
<%= link_to section.title, section_url(section) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<h4><%= @section.title %></h4>
|
|
|
|
<p><%= @section.description %></p>
|
|
|
|
<% @questions.each do |question| %>
|
|
<section>
|
|
<%= render partial: "questions/#{question.question_kind}_show", locals: { question: } %>
|
|
<%= render partial: "questions/#{question.answer_kind}_form", locals: { question: } %>
|
|
</section>
|
|
<% end %>
|