Sha256: 4a8392156e032dbf955594c2b380659fd70d6f820626c32b9b37670895ae6554

Contents?: true

Size: 1.54 KB

Versions: 5

Compression:

Stored size: 1.54 KB

Contents

<% remarkable_type = element.class.name.demodulize.underscore.pluralize %>
<div class="element-toolbar">
  <span class="element_tools">
    <div class="button_with_label">
      <%= link_to(
        render_icon(:clone),
        alchemy.insert_admin_clipboard_path(remarkable_type: remarkable_type, remarkable_id: element.id),
        remote: true,
        method: :post,
        class: "icon_button"
      ) %>
      <label><%= Alchemy.t(:copy_element) %></label>
    </div>
    <div class="button_with_label">
      <%= link_to(
        render_icon(:cut),
        alchemy.insert_admin_clipboard_path(remarkable_type: remarkable_type, remarkable_id: element.id, remove: true),
        remote: true,
        method: :post,
        class: "icon_button"
      ) %>
      <label><%= Alchemy.t(:cut_element) %></label>
    </div>
    <div class="button_with_label">
      <%= link_to(
        render_icon('trash-alt'),
        alchemy.trash_admin_element_path(element),
        method: :delete,
        class: "icon_button",
        remote: true
      ) -%>
      <label><%= Alchemy.t("trash element") %></label>
    </div>
    <div class="button_with_label publish-element-button">
      <%= link_to(
        render_icon('eye-slash'),
        alchemy.publish_admin_element_path(id: element.id),
        remote: true,
        method: :patch,
        class: "icon_button"
      ) %>
      <% if element.public? %>
        <label><%= Alchemy.t(:hide_element) %></label>
      <% else %>
        <label><%= Alchemy.t(:show_element) %></label>
      <% end %>
    </div>
  </span>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alchemy_cms-4.1.2 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.1.1 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.1.0 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.1.0.rc1 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.1.0.beta app/views/alchemy/admin/elements/_element_toolbar.html.erb