Sha256: f1b06d3d099d8b052b0a793b15f81ec0621637c1d1e336f308585635b31bd37f

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

<%= render PandaCms::Admin::ContainerComponent.new do |component| %>
  <% component.with_heading(text: "Add Page", level: 1) do |heading| %>
  <% end %>

  <%= panda_cms_form_with model: page, url: admin_pages_path, method: :post do |f| %>
  <% options = nested_set_options(PandaCms::Page, page) { |i| "#{"-" * i.level} #{i.title} (#{i.path})" } %>
    <div data-controller="text-field-update">
      <input type="hidden" value="<%= PandaCms::Current.root %>" data-text-field-update-target="existing_root">
      <%= f.select :parent_id, options, {}, { "data-text-field-update-target": "input_select", "data-action": "change->text-field-update#setPrePath" } %>
      <%= f.text_field :title, { data: { "text-field-update-target": "input_text", action: "focusout->text-field-update#generatePath" } } %>
      <%= f.text_field :path, { meta: t(".path.meta"), data: { prefix: PandaCms::Current.root, "text-field-update-target": "output_text" } } %>
      <%= f.collection_select :panda_cms_template_id, PandaCms::Template.available, :id, :name %>
      <%= f.button %>
    </div>
  <% end %>
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
panda_cms-0.5.10 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.9 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.8 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.7 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.6 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.5 app/views/panda_cms/admin/pages/new.html.erb
panda_cms-0.5.4 app/views/panda_cms/admin/pages/new.html.erb