1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #4386: Update admin links for Django RQ to reflect multiple queues

This commit is contained in:
Jeremy Stretch
2020-03-19 13:54:49 -04:00
parent 533521b29d
commit 05fdf5e9a0
4 changed files with 37 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
{% extends "admin/index.html" %}
{% block content_title %}{% endblock %}
{% block sidebar %}
{{ block.super }}
<div class="module">
<table style="width: 100%">
<caption>Utilities</caption>
<tbody>
<tr>
<th>
<a href="{% url 'rq_home' %}">Background Tasks</a>
</th>
</tr>
</tbody>
</table>
</div>
{% endblock %}