From 5c11fb2ed540a9f1e96435a7bd3fc9ba4cef1632 Mon Sep 17 00:00:00 2001 From: Arthur Date: Tue, 23 Jan 2024 15:45:12 -0800 Subject: [PATCH] 14729 remove rq from admin --- netbox/netbox/urls.py | 1 - netbox/templates/admin/index.html | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100644 netbox/templates/admin/index.html diff --git a/netbox/netbox/urls.py b/netbox/netbox/urls.py index 7f37f01f1..38044a613 100644 --- a/netbox/netbox/urls.py +++ b/netbox/netbox/urls.py @@ -72,7 +72,6 @@ _patterns = [ path('api/plugins/', include((plugin_api_patterns, 'plugins-api'))), # Admin - path('admin/background-tasks/', include('django_rq.urls')), path('admin/', admin_site.urls), ] diff --git a/netbox/templates/admin/index.html b/netbox/templates/admin/index.html deleted file mode 100644 index e72b5a78d..000000000 --- a/netbox/templates/admin/index.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "admin/index.html" %} -{% load i18n %} - -{% block content_title %}{% endblock %} - -{% block sidebar %} - {{ block.super }} -
- - - - - - - -
{% trans "System" %}
- {% trans "Background Tasks" %} -
-
-{% endblock %}