def bootstrap_start
p do
h2 "Genome Bootstrap"
h3 "Beta", :class => "warning"
p "This is the Genome Bootstrap web tool. This is a beta release " +
"so if you're not ready for a beta tool, stick to the command line genome-bootstrap."
p "Ready for beta? "
p do
form(:method => "post", :action => CONTEXT + R(Genomed::Controllers::Bootstrap)) do
input :type => "hidden", :name => "next_step", :value => "choose_machine_type"
input :type => "hidden", :name => "this_step", :value => "start"
input :type => "submit", :value => "Select machine type"
end
end
end
end