diff --git a/app/views/spree/admin/webhooks_subscribers/index.html.erb b/app/views/spree/admin/webhooks_subscribers/index.html.erb
index cde691c294..4c44f8258f 100644
--- a/app/views/spree/admin/webhooks_subscribers/index.html.erb
+++ b/app/views/spree/admin/webhooks_subscribers/index.html.erb
@@ -15,6 +15,7 @@
<% if defined?(Spree::Vendor) && can?(:manage, Spree::Vendor) && !current_spree_vendor %>
<%= Spree.t(:vendor) %> |
<% end %>
+ <%= Spree.t('admin.webhooks_subscribers.secret_key') %> |
<%= Spree.t('admin.active') %> |
<%= Spree.t('admin.webhooks_subscribers.subscriptions') %> |
<%= Spree.t('admin.webhooks_subscribers.time_of_last_event') %> |
@@ -31,6 +32,16 @@
<%= link_to webhooks_subscriber.vendor.name, spree.admin_vendor_path(webhooks_subscriber.vendor) if webhooks_subscriber.vendor.present? %>
<% end %>
+
+
+ |
<%= active_badge(webhooks_subscriber.active) %> |
<%= webhooks_subscriber.subscriptions&.sort&.join(', ') %> |
<%= webhooks_subscriber.events.order(:created_at).last&.created_at %> |