{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% load plugin_extras %} {% block label %}global-notifications{% endblock label %} {% block heading %}{% trans "Notification Settings" %}{% endblock heading %} {% block content %}
{% notification_list as methods %} {% for method in methods %} {% if method.setting %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Slug" %} {% trans "Description" %}
{% if method.icon %}{% endif %} {{ method.name }} {% if method.plugin %} {{ method.plugin.slug }} {% endif %} {{ method.slug }} {{ method.description }}
{% include "InvenTree/settings/setting.html" with key=method.setting plugin=method.plugin %}
{% endblock content %}