13 lines
372 B
Plaintext
13 lines
372 B
Plaintext
<%= render Admin::TableActionsComponent.new(actions: []) do %>
|
|
<%= link_to restore_text, restore_path,
|
|
method: :put,
|
|
data: { confirm: t("admin.actions.confirm") },
|
|
class: "button hollow warning" %>
|
|
|
|
<% unless record.confirmed_hide? %>
|
|
<%= link_to confirm_hide_text, confirm_hide_path,
|
|
method: :put,
|
|
class: "button" %>
|
|
<% end %>
|
|
<% end %>
|