Sha256: 24dfe100e64e75d2493198dace5825667a44340f67942baac15b3c53148b2e11

Contents?: true

Size: 706 Bytes

Versions: 4

Compression:

Stored size: 706 Bytes

Contents

.row
  %section
    .container
      .col-md-12
        = form_for @project, html:{class: "form-horizontal"} do |f|
          = form_group_for f, :name do
            .col-sm-5
              %p Give a name that people will remember easily. Do not exceed 50 characters.
              = f.text_field :name, class: "form-control"
          = form_group_for f, :category do
            .col-sm-5
              = f.collection_select(:category_id, Hatchy::Category.order(:name), :id, :name, {}, class:'form-control')
              %p.small Choose the most appropriate to your project.
          .form-group
            .col-sm-offset-2.col-sm-10
              = f.submit "Save Project" , class: 'btn btn-primary'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hatchy-0.0.8.pre app/views/hatchy/projects/new.html.haml
hatchy-0.0.7.pre app/views/hatchy/projects/new.html.haml
hatchy-0.0.6.pre app/views/hatchy/projects/new.html.haml
hatchy-0.0.5.pre app/views/hatchy/projects/new.html.haml