.container-fluid .d-flex.justify-content-between nav ol.breadcrumb li.breadcrumb-item = link_to projects_path do = t(:projects) li.breadcrumb-item = link_to @project.title, @project li.breadcrumb-item = link_to @respondent_category.name, [@project, @respondent_category] li.breadcrumb-item.active = t(:questions) h1 Assign Sections = form_tag assign_sections_project_respondent_category_interview_questions_path(@project, @respondent_category), method: :post do table.table.table-bordered thead tr th Question th Section tbody - @interview_questions.each do |q| tr td= q.question td style="width: 300px;" select.form-control name="sections[#{q.id}]" required="required" option value=" " selected="selected" - @project.master_sections.each do |section| option value="#{section.id}"= section.name tfoot tr td td button.btn.btn-primary Submit