Sha256: 3fb7a7fab98328cd7b71c7b20d8162e37cfc1aff97e0b686c2e9ffa12c23f3e7

Contents?: true

Size: 1.55 KB

Versions: 31

Compression:

Stored size: 1.55 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(:element_copy),
        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(:remove),
        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('element-hide'),
        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

31 entries across 31 versions & 1 rubygems

Version Path
alchemy_cms-4.0.6 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.7 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.6 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.5 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.4 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.3 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.5 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.2 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.1 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.4 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.0 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.3 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.2 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.0.rc2 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.0.rc1 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.1 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-4.0.0.beta app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.6.0 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.5.0 app/views/alchemy/admin/elements/_element_toolbar.html.erb
alchemy_cms-3.4.2 app/views/alchemy/admin/elements/_element_toolbar.html.erb