Sha256: 518ba837a64775ed97518eac24d64d46a16705afa687a89d5e393a65ca8a8812
Contents?: true
Size: 621 Bytes
Versions: 6
Compression:
Stored size: 621 Bytes
Contents
<%= simple_form_for(@project, html: {class: 'form-horizontal'}, wrapper: :horizontal_form) do |f| %> <%= render partial: 'shared/form/error_messages', locals: { resource: @project } %> <%= f.input :organization_id, collection: current_user.organizations %> <%= f.input :product_id, collection: Product.all %> <%= f.input :name %> <%= f.input :text, input_html: {style: 'width: 500px; height:300px;'} %> <%= f.input :url %> <%= f.association :areas, as: :check_boxes %> <div class="form-group"> <div class="col-sm-offset-3 col-sm-9"> <%= f.button :submit %> </div> </div> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems