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