Sha256: 74bd4b9ee130ddfc2102c4dd5e8d97f85ab56923e8afce9dab93a543513aa88e

Contents?: true

Size: 839 Bytes

Versions: 3

Compression:

Stored size: 839 Bytes

Contents

= form_for @page, html: {class: 'form-horizontal'} do |f|
  %fieldset
    %legend= caption

  - if @page.errors.any?
    #error_explanation
      %h2= "#{pluralize(@page.errors.count, "error")} prohibited this page from being saved:"
      %ul
        - @page.errors.full_messages.each do |msg|
          %li= msg

  .control-group
    = f.label :title, class: 'control-label'
    .controls
      = f.text_field :title, autofocus: true
      %span.help-inline The internal title of this page.

  .control-group
    = f.label :url, class: 'control-label'
    .controls
      = f.text_field :url
      %span.help-inline The URL under which this page should be accessible on the web.

  .control-group
    .controls
      .actions
        = f.submit class: 'btn btn-primary'
             
        = link_to 'Back', pages_path

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flms-0.0.3 app/views/flms/pages/_form.html.haml
flms-0.0.2 app/views/flms/pages/_form.html.haml
flms-0.0.1 app/views/flms/pages/_form.html.haml