Sha256: 570e4290346c2f97a399a9af835c97a8377998c2aa3146d67c2d1df20174d0bb

Contents?: true

Size: 688 Bytes

Versions: 5

Compression:

Stored size: 688 Bytes

Contents

<%= form_for(@carrier_type_has_checkout_type) do |f| -%>
  <%= f.error_messages -%>

  <div class="field">
    <%= f.label t('activerecord.models.carrier_type') -%><br />
    <%= f.select(:carrier_type_id, @carrier_types.collect{|m| [m.display_name, m.id]}, include_blank: true) -%>
  </div>
  <div class="field">
    <%= f.label t('activerecord.models.checkout_type') -%><br />
    <%= f.select(:checkout_type_id, @checkout_types.collect{|c| [c.display_name, c.id]}, include_blank: true) -%>
  </div>
  <div class="field">
    <%= f.label :note -%><br />
    <%= f.text_area :note, class: 'resource_textarea' -%>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<%- end -%>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_circulation-0.4.0.rc.1 app/views/carrier_type_has_checkout_types/_form.html.erb
enju_circulation-0.4.0.beta.4 app/views/carrier_type_has_checkout_types/_form.html.erb
enju_circulation-0.4.0.beta.3 app/views/carrier_type_has_checkout_types/_form.html.erb
enju_circulation-0.4.0.beta.2 app/views/carrier_type_has_checkout_types/_form.html.erb
enju_circulation-0.4.0.beta.1 app/views/carrier_type_has_checkout_types/_form.html.erb