about summary refs log tree commit diff stats
path: root/data/maps/the_door
ModeNameSize
-rw-r--r--connections.txtpb87log stats plain blame
-rw-r--r--doors.txtpb129log stats plain blame
-rw-r--r--metadata.txtpb25log stats plain blame
d---------rooms83log stats plain
2' href='#n22'>22
23
24
25
26
27
28
29

















                                                         



                                                                               






                                                                    
%fieldset#content
  .title-field
    = f.label :title
    = f.text_field :title, placeholder: "Title"
  .slug-field
    = f.label :slug, "https://feffernoo.se/thinks/"
    = f.text_field :slug, placeholder: "insert-slug-here"
  .body-field
    = f.label :body
    = f.cktext_area :body
%fieldset#details
  - if f.object.errors.any?
    #errors.details-module
      %h3 Error!
      %ul
        - f.object.errors.full_messages.each do |error|
          %li= error
  .details-module
    .tags-field
      = f.label :tag_list, "Tags"
      = f.text_field :tag_list, type: :tags, value: f.object.tag_list.join(",")
  .details-module
    = f.fields_for :records, Record.new do |builder|
      .should-create-record-field
        = builder.check_box :_destroy, {checked: false}, "0", "1"
        = builder.label :_destroy, "Create record?"
      .record-description-field
        = builder.text_area :description, placeholder: "record text"
  .details-module= f.submit