# File lib/genomed.rb, line 642
    def bootstrap_review
      p do
        h2 "Genome Bootstrap"
        h3 "Step 5: Review the final yaml"
      end
      p do
        form(:method => "post", :action => CONTEXT + R(Genomed::Controllers::Bootstrap)) do
          input :type => "hidden", :name => "next_step", :value => "complete"
          input :type => "hidden", :name => "this_step", :value => "review"
          
          textarea ::YAML.dump(@config), :name => 'config', :rows => '25', :cols => '100'; br

          input :type => "submit", :value => "Finish"
        end
      end
    end