@@ -35,8 +28,7 @@
{% endblock tabs %}
-{% block content-wrapper %}
-
-{% endblock content-wrapper %}
+{% endblock content %}
diff --git a/netbox/templates/core/background_tasks_queue.html b/netbox/templates/core/background_tasks_queue.html
index 839e379a5..0ad55955e 100644
--- a/netbox/templates/core/background_tasks_queue.html
+++ b/netbox/templates/core/background_tasks_queue.html
@@ -1,10 +1,8 @@
-{% extends 'base/layout.html' %}
-{% load buttons %}
-{% load helpers %}
+{% extends 'generic/_base.html' %}
{% load i18n %}
{% load render_table from django_tables2 %}
-{% block header %}
+{% block page-header %}
{# Breadcrumbs #}
{{ block.super }}
-{% endblock header %}
+{% endblock page-header %}
{% block title %}{% trans "Queued Jobs in " %}{{ queue.name }}{% endblock %}
-{% block controls %}
-
-
- {% block extra_controls %}{% endblock %}
-
-
-{% endblock controls %}
-
{% block tabs %}
{% endblock tabs %}
-{% block content-wrapper %}
-
- {% render_table table %}
-
-
-{% endblock content-wrapper %}
+{% block content %}
+ {% render_table table %}
+{% endblock content %}