make requeseted changes from code review

This commit is contained in:
Matthias 2022-03-20 00:29:58 +01:00
parent 62a81c1a62
commit b0e6b6071f
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076
4 changed files with 8 additions and 16 deletions

View File

@ -231,8 +231,8 @@ function inventreeDocReady() {
stopNotificationWatcher();
});
$('#offcanvasRight').on('show.bs.offcanvas', openNotificationPanel) // listener for opening the notification panel
$('#offcanvasRight').on('hidden.bs.offcanvas', closeNotificationPanel) // listener for closing the notification panel
$('#offcanvasRight').on('show.bs.offcanvas', openNotificationPanel); // listener for opening the notification panel
$('#offcanvasRight').on('hidden.bs.offcanvas', closeNotificationPanel); // listener for closing the notification panel
}

View File

@ -911,11 +911,3 @@ class NotificationsView(TemplateView):
"""
template_name = "InvenTree/notifications/notifications.html"
def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs).copy()
# ctx['settings'] = InvenTreeSetting.objects.all().order_by('key')
return ctx

View File

@ -6,12 +6,12 @@
{% block label %}history{% endblock %}
{% block heading %}
{% trans "History" %}
{% trans "Notification History" %}
{% endblock %}
{% block actions %}
<div class='btn btn-secondary' type='button' id='history-refresh' title='{% trans "Refresh History" %}'>
<span class='fa fa-sync'></span> {% trans "Refresh History" %}
<div class='btn btn-secondary' type='button' id='history-refresh' title='{% trans "Refresh Notification History" %}'>
<span class='fa fa-sync'></span> {% trans "Refresh Notification History" %}
</div>
{% endblock %}

View File

@ -6,12 +6,12 @@
{% block label %}inbox{% endblock %}
{% block heading %}
{% trans "Inbox" %}
{% trans "Pending Notifications" %}
{% endblock %}
{% block actions %}
<div class='btn btn-secondary' type='button' id='inbox-refresh' title='{% trans "Refresh Inbox" %}'>
<span class='fa fa-sync'></span> {% trans "Refresh Inbox" %}
<div class='btn btn-secondary' type='button' id='inbox-refresh' title='{% trans "Refresh Pending Notifications" %}'>
<span class='fa fa-sync'></span> {% trans "Refresh Pending Notifications" %}
</div>
{% endblock %}