mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1003 B
22 lines
1003 B
12 years ago
|
= form_for team, :html => { :class => 'form-horizontal' } do |f|
|
||
|
.control-group{:class => team.errors[:name].present? ? 'error' : ''}
|
||
|
= f.label :name, 'Name', :class => 'control-label'
|
||
|
.controls
|
||
|
= f.text_field :name
|
||
|
- if team.errors[:name].present?
|
||
|
.help-inline= team.errors[:name].join(', ')
|
||
|
.control-group{:class => team.errors[:max_members].present? ? 'error' : ''}
|
||
|
= f.label :max_members, 'Max members', :class => 'control-label'
|
||
|
.controls
|
||
|
= f.text_field :max_members
|
||
|
- if team.errors[:max_members].present?
|
||
|
.help-inline= team.errors[:max_members].join(', ')
|
||
|
.control-group{:class => team.errors[:private_team].present? ? 'error' : ''}
|
||
|
= f.label :private_team, 'Private team?', :class => 'control-label'
|
||
|
.controls
|
||
|
= f.check_box :private_team
|
||
|
- if team.errors[:private_team].present?
|
||
|
.help-inline= team.errors[:private_team].join(', ')
|
||
|
.form-actions
|
||
|
= f.submit 'Create Team', :class => 'btn btn-primary'
|