Sha256: 19cd517517c013b86e1d7bdfaa0c83a3a0719582bc8318f61cdf3f6a77505dc1

Contents?: true

Size: 555 Bytes

Versions: 1

Compression:

Stored size: 555 Bytes

Contents

= form_for(@application) do |f| 
  - if @application.errors.any?
    #error_explanation
      %h2 
        = pluralize(@application.errors.count, "error")
        prohibited this application from being saved:

      %ul
        - @application.errors.full_messages.each do |msg| 
          %li
            = msg 
            
  .field
    = f.label :name 
    %br
    = f.text_field :name
  .field
    = f.label :key 
    %br
    = f.text_field :key
  .field
    = f.label :description 
    %br
    = f.text_field :description
  
  .actions
    = f.submit

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eventbus-0.0.20 admin/app/views/applications/_form.html.haml