Sha256: 1298db17f300cb64cf91aeb74d8154a79ec2aa3fc8ca90d51e7cea072a7eb087

Contents?: true

Size: 934 Bytes

Versions: 82

Compression:

Stored size: 934 Bytes

Contents

<%- if @clipboard_items.blank? -%>
  <%= render 'new_element_form' %>
<%- else -%>
<div id="overlay_tabs">
  <ul>
    <li><a href="#create_element_tab"><%= Alchemy.t('New') %></a></li>
    <li><a href="#paste_element_tab"><%= Alchemy.t('Paste from clipboard') %></a></li>
  </ul>
  <div id="create_element_tab">
    <%= render 'new_element_form' %>
  </div>
  <div id="paste_element_tab">
    <%= alchemy_form_for([:admin, @element]) do |f| %>
      <%= f.hidden_field :page_id %>
      <%= f.hidden_field :parent_element_id, value: @parent_element.try(:id) %>
      <div class="input select">
        <label for="paste_from_clipboard" class="control-label"><%= Alchemy.t("Element") %></label>
        <%= select_tag 'paste_from_clipboard',
          clipboard_select_tag_options(@clipboard_items),
          class: 'alchemy_selectbox' %>
      </div>
      <%= f.submit Alchemy.t(:paste) %>
    <% end %>
  </div>
</div>
<%- end -%>

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
alchemy_cms-5.3.8 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.7 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.6 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.5 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.4 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.3 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.2 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.1 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.3.0 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.2.7 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.2.6 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.1.10 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.0.10 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-4.6.7 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.2.5 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.1.9 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.0.9 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-4.6.6 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.2.4 app/views/alchemy/admin/elements/new.html.erb
alchemy_cms-5.1.8 app/views/alchemy/admin/elements/new.html.erb