Sha256: fdc700f9c5a342d9d268ca8c7f37b60dbf5fcfbf75e9ef503854e33e8c58230c
Contents?: true
Size: 1018 Bytes
Versions: 2
Compression:
Stored size: 1018 Bytes
Contents
.row#payment_data.hidden = form_for [@project, @contribution], html:{class: "form-horizontal"} do |f| %h2 Complete and review the data for payment %p These data will be reported to the project owner .col-md-8 = form_group_for f, :card_type do .col-sm-3 = f.select :card_type,["Visa", "Mastercard", "Discover", "American Express"],{}, class: 'form-control' = form_group_for f, :card_number do .col-sm-8 = f.text_field :card_number, class: 'form-control' = form_group_for f, :card_verification do .col-sm-8 = f.text_field :card_verification, class: 'form-control' = form_group_for f, :card_expires_on do .col-sm-8 = f.date_select :card_expires_on,{discard_day:true, start_year: Date.today.year, end_year: Date.today.year + 10, add_month_numbers: true},{class: "form-control", style:"width:auto; display:inline;"} .form-group .col-sm-offset-2.col-sm-10 = f.hidden_field :step, value:'payment_data' = f.submit "Save" , class: 'btn btn-success btn-lg'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hatchy-0.0.8.pre | app/views/hatchy/projects/contributions/_payment.html.haml |
hatchy-0.0.7.pre | app/views/hatchy/projects/contributions/_payment.html.haml |