diff --git a/httpdocs/js/pages/recipients-endpoints.js b/httpdocs/js/pages/recipients-endpoints.js index efe509f4f4..dc134b6165 100644 --- a/httpdocs/js/pages/recipients-endpoints.js +++ b/httpdocs/js/pages/recipients-endpoints.js @@ -159,6 +159,11 @@ $(document).ready(function () { width: "15%", render: $.fn.dataTableExt.absoluteFormatSecondsToHHMMSS }, + { + data: "stats.num_uses", + className: "text-center", + width: "15%", + }, { targets: -1, className: 'text-center', diff --git a/httpdocs/templates/pages/recipients_list.template b/httpdocs/templates/pages/recipients_list.template index 086fd3a861..696a49bf8a 100644 --- a/httpdocs/templates/pages/recipients_list.template +++ b/httpdocs/templates/pages/recipients_list.template @@ -17,6 +17,7 @@ {{ i18n('endpoint_notifications.type') }} {{ i18n('endpoint_notifications.associated_to_endpoints') }} {{ i18n('endpoint_notifications.time_since_last_use') }} + {{ i18n('endpoint_notifications.num_uses') }} {{ i18n('actions') }} diff --git a/scripts/locales/en.lua b/scripts/locales/en.lua index 49e5671769..0b479c0932 100644 --- a/scripts/locales/en.lua +++ b/scripts/locales/en.lua @@ -1088,6 +1088,7 @@ local lang = { ["enpoint_recipients_list"] = "Recipients", ["name"] = "Endpoint Name", ["notifications"] = "Notifications", + ["num_uses"] = "Number of Usage", ["recipient_category"] = "Category Filter", ["recipient_list"] = "Recipients", ["recipient_name"] = "Recipient Name",