2010-10-27 00:11:44 +00:00
|
|
|
- content_for :head_title do
|
|
|
|
= t('admin.installation.common.title')
|
|
|
|
|
|
|
|
- title t('.title')
|
|
|
|
|
2010-12-14 17:00:12 +00:00
|
|
|
- content_for :head do
|
|
|
|
= include_stylesheets :installation
|
2010-10-27 00:11:44 +00:00
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
- if @step_done.blank?
|
|
|
|
= semantic_form_for(@account, :url => admin_installation_step_url(1)) do |f|
|
|
|
|
.inner
|
|
|
|
= f.inputs do
|
|
|
|
= f.input :name, :label => t('.name'), :required => false
|
|
|
|
= f.input :email, :label => t('.email'), :required => false
|
|
|
|
= f.input :password, :label => t('.password'), :required => false
|
|
|
|
= f.input :password_confirmation, :label => t('.password_confirmation'), :required => false
|
2010-10-27 00:11:44 +00:00
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
.footer
|
|
|
|
= box_button_tag t('.next')
|
|
|
|
- else
|
|
|
|
.inner
|
|
|
|
%p.done
|
|
|
|
!= @step_done
|
2010-10-27 00:11:44 +00:00
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
.footer
|
|
|
|
= next_installation_step_link(2)
|