Sha256: b0475a003966ff997d7460cbc7e52dafd100eb410762ea0884e3e6ba777c8f73
Contents?: true
Size: 791 Bytes
Versions: 27
Compression:
Stored size: 791 Bytes
Contents
<div class="panel-body" id="form_member" > <%= simple_form_for(@member, :html=> {class: 'form-horizontal'}, wrapper: :horizontal_form) do |f| %> <%= f.error_notification %> <div class="form-inputs"> <%= f.input :number, placeholder:'Numéro', my_wrapper_html:{class:'col-sm-2'} %> <%= f.input :name, my_wrapper_html:{class:'col-sm-4'} %> <%= f.input :forname, my_wrapper_html:{class:'col-sm-4'} %> <%= f.input :birthdate, my_wrapper_html:{class:'col-sm-2'}, input_html: {value:@member.birthdate, date_min:Date.today.years_ago(100), date_max:Date.today, 'data-with-month-year'=>'avec'}, :as=>:date_picker %> </div> <div class="form-actions"> <%= f.button :submit, class: "btn-primary col-md-2 col-md-offset-2" %> </div> <% end %> </div>
Version data entries
27 entries across 27 versions & 1 rubygems