+
+ <%= content_for(:title) %>
+
+
+ <%= link_to(
+ t("administrate.actions.edit_resource", name: page.page_title),
+ [:edit, namespace, page.resource],
+ class: "button",
+ ) if accessible_action?(page.resource, :edit) %>
+ <%= button_to(
+ "Sync to Zenventory",
+ sync_to_zenventory_admin_warehouse_sku_path(page.resource),
+ method: :post,
+ class: "button button--secondary",
+ form: { style: "display: inline" },
+ ) %>
+ <% if page.resource.zenventory_url.present? %>
+ <%= link_to(
+ "View on Zenventory",
+ page.resource.zenventory_url,
+ class: "button button--secondary",
+ target: "_blank",
+ ) %>
+ <% end %>
+ <%= link_to(
+ t("administrate.actions.destroy"),
+ [namespace, page.resource],
+ class: "button button--danger",
+ method: :delete,
+ data: { confirm: t("administrate.actions.confirm") }
+ ) if accessible_action?(page.resource, :destroy) %>
+
+
+