Sha256: 2678139f26db183183acf6678d45bbb77012002f57398a85d3c9d65cb0dc2f50

Contents?: true

Size: 846 Bytes

Versions: 18

Compression:

Stored size: 846 Bytes

Contents

%h1 Polyblock Test Dummy

%h3 Polyblock with Inline Editing
= pb 'Test', :editable => true

%h3 Uneditable Polyblock
= pb 'Test', :editable => false

%h3 New Polyblock
= pb Polyblock::Block.random_id, :editable => true

%h3 Polyblock Form Helper
= form_for @event do |f|
  %p
    Title:
    = f.text_field :title
  %p
    Description:
    %br
    = fields_for_polyblock :description, f
  %p
    Some Random String
    = fields_for_polyblock "Some Random String", f
  = f.submit

%h3

%h3 Polyblock SimpleForm
= simple_form_for @event do |f|
  = f.input :title
  = simple_fields_for_polyblock :description, f
  = simple_fields_for_polyblock "Some Other Random String", f
  = f.submit "Save Event"

%h3 System Level Polyblocks in SimpleForm
= simple_form_for_polyblocks do |f|
  = simple_fields_for_polyblock 'Another Random String', f
  = f.submit

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
polyblock-0.9.7 test/dummy/app/views/home/index.html.haml
polyblock-0.9.6 test/dummy/app/views/home/index.html.haml
polyblock-0.9.5 test/dummy/app/views/home/index.html.haml
polyblock-0.9.4 test/dummy/app/views/home/index.html.haml
polyblock-0.9.3 test/dummy/app/views/home/index.html.haml
polyblock-0.9.2 test/dummy/app/views/home/index.html.haml
polyblock-0.8.8 test/dummy/app/views/home/index.html.haml
polyblock-0.8.7 test/dummy/app/views/home/index.html.haml
polyblock-0.8.6 test/dummy/app/views/home/index.html.haml
polyblock-0.8.5 test/dummy/app/views/home/index.html.haml
polyblock-0.8.4 test/dummy/app/views/home/index.html.haml
polyblock-0.8.3 test/dummy/app/views/home/index.html.haml
polyblock-0.8.2 test/dummy/app/views/home/index.html.haml
polyblock-0.8.1 test/dummy/app/views/home/index.html.haml
polyblock-0.8.0 test/dummy/app/views/home/index.html.haml
polyblock-0.7.2 test/dummy/app/views/home/index.html.haml
polyblock-0.7.1 test/dummy/app/views/home/index.html.haml
polyblock-0.7.0 test/dummy/app/views/home/index.html.haml