_form_import.html.haml revision 8976668187de098e94880415aa37d61a2430cc68
= simple_form_for Repository.new, html: {class: 'form-horizontal' } do |f|
= f.input :name, input_html: { class: 'input-xlarge' }, required: true
= f.input :description, input_html: { class: 'input-xlarge' }
= f.input :source_type, required: true, as: :radio_buttons, collection: Repository::SOURCE_TYPES, required: true
= f.input :source_address, required: true
.control-group
.controls= f.button :submit, class: 'btn btn-primary'