Newer
Older
dmpopidor / app / views / phases / edit.html.erb
@Gavin Morrice Gavin Morrice on 28 Aug 2018 596 bytes Refactor how section ordering is handled (#1837)
<% title "#{plan.title} - Write plan" %>
<div class="row">
  <div class="col-md-12">
    <h1><%= plan.title %></h1>
  </div>
</div>

<div class="row">
  <div class="col-md-12">
    <%= render partial: 'phases/edit_plan_answers',
               layout: 'plans/navigation',
               locals: {
                 plan: plan,
                 phase: phase,
                 answers: answers,
                 readonly: readonly,
                 base_template_org: base_template_org,
                 guidance_presenter: guidance_presenter,
               } %>
  </div>
</div>