Sha256: 5d00ac4ae84ac3943a16d7cc165fb01d8a6986a978b205fd1a44413ab4529b05

Contents?: true

Size: 921 Bytes

Versions: 32

Compression:

Stored size: 921 Bytes

Contents

<%- if @clipboard_items.blank? -%>
  <%= render 'new_page_form' %>
<%- else -%>
<sl-tab-group id="overlay_tabs">
  <sl-tab slot="nav" panel="create_page_tab"><%= Alchemy.t('New page') %></sl-tab>
  <sl-tab slot="nav" panel="paste_page_tab"><%= Alchemy.t('Paste from clipboard') %></sl-tab>
  <sl-tab-panel name="create_page_tab">
    <%= render 'new_page_form' %>
  </sl-tab-panel>
  <sl-tab-panel name="paste_page_tab">
    <%= alchemy_form_for [:admin, @page] do |f| %>
      <%= f.hidden_field(:parent_id) %>
      <div class="input select">
        <label for="paste_from_clipboard" class="control-label"><%= Alchemy.t("Page") %></label>
        <%= select_tag 'paste_from_clipboard',
          clipboard_select_tag_options(@clipboard_items),
          is: 'alchemy-select' %>
      </div>
      <%= f.input :name %>
      <%= f.submit Alchemy.t(:paste) %>
    <% end %>
  </sl-tab-panel>
</sl-tab-group>
<%- end -%>

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
alchemy_cms-7.4.0 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.5 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.8 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.1.13 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.4 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.3 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.2 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.7 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.1 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.3.0 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.6 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.5 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.1.12 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.4 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.1.11 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.3 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.1.10 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.2 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.1.9 app/views/alchemy/admin/pages/new.html.erb
alchemy_cms-7.2.1 app/views/alchemy/admin/pages/new.html.erb