Sha256: 60a1489ee14015290b53087ba08d0868507c9281ba05f7c8210ae4824d7c977d

Contents?: true

Size: 518 Bytes

Versions: 8

Compression:

Stored size: 518 Bytes

Contents

<%= simple_form_for(@project, html: {class: 'form-horizontal'}) do |f| %>
  <%= render partial: 'shared/form/error_messages', locals: { resource: @project } %>
  
  <div class="form-inputs">
    <%= 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>
  
  <div class="form-actions">
    <%= f.button :submit %>
  </div>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
voluntary-0.1.0 app/views/projects/_form.html.erb
voluntary-0.1.0.rc4 app/views/projects/_form.html.erb
voluntary-0.1.0.rc3 app/views/projects/_form.html.erb
voluntary-0.1.0.rc2 app/views/projects/_form.html.erb
voluntary-0.1.0.rc1 app/views/projects/_form.html.erb
voluntary-0.0.3 app/views/projects/_form.html.erb
voluntary-0.0.2 app/views/projects/_form.html.erb
voluntary-0.0.1 app/views/projects/_form.html.erb