-
+
{{ report_title }}
diff --git a/dojo/templates/dojo/system_settings.html b/dojo/templates/dojo/system_settings.html
index 693abe712f0..02510452e16 100644
--- a/dojo/templates/dojo/system_settings.html
+++ b/dojo/templates/dojo/system_settings.html
@@ -62,7 +62,7 @@
System Settings
}
$(function () {
- $.each(['slack','msteams','mail', 'grade'], function (index, value) {
+ $.each(['slack','msteams','mail','webhooks','grade'], function (index, value) {
updatenotificationsgroup(value);
$('#id_enable_' + value + '_notifications').change(function() { updatenotificationsgroup(value)});
});
diff --git a/dojo/templates/dojo/view_notification_webhooks.html b/dojo/templates/dojo/view_notification_webhooks.html
new file mode 100644
index 00000000000..6b02c0888d3
--- /dev/null
+++ b/dojo/templates/dojo/view_notification_webhooks.html
@@ -0,0 +1,101 @@
+{% extends "base.html" %}
+{% load navigation_tags %}
+{% load display_tags %}
+{% load i18n %}
+{% load authorization_tags %}
+{% block content %}
+ {{ block.super }}
+
+
+
+
+
+ Notification Webhook List
+
+
+ {% if "dojo.add_notification_webhook"|has_configuration_permission:request %}
+
+
+ {% endif %}
+
+
+
+
+
+ {% if nwhs %}
+
+
+ {% include "dojo/paging_snippet.html" with page=nwhs page_size=True %}
+
+
+
+
+ {% include "dojo/paging_snippet.html" with page=nwhs page_size=True %}
+
+ {% else %}
+
No Notification Webook found.
+ {% endif %}
+
+
+{% endblock %}
+{% block postscript %}
+ {{ block.super }}
+ {% include "dojo/filter_js_snippet.html" %}
+{% endblock %}
diff --git a/dojo/templates/dojo/view_product_details.html b/dojo/templates/dojo/view_product_details.html
index ea4514d7356..3f7ea62ce32 100644
--- a/dojo/templates/dojo/view_product_details.html
+++ b/dojo/templates/dojo/view_product_details.html
@@ -687,7 +687,7 @@