diff --git a/bookwyrm/templates/settings/celery.html b/bookwyrm/templates/settings/celery.html
new file mode 100644
index 000000000..b2bd95601
--- /dev/null
+++ b/bookwyrm/templates/settings/celery.html
@@ -0,0 +1,109 @@
+{% extends 'settings/layout.html' %}
+{% load humanize %}
+{% load i18n %}
+{% load celery_tags %}
+
+{% block title %}{% trans "Celery Status" %}{% endblock %}
+
+{% block header %}{% trans "Celery Status" %}{% endblock %}
+
+{% block panel %}
+
+{% if queues %}
+ {% trans "Low priority" %} {{ queues.low_priority|intcomma }} {% trans "Medium priority" %} {{ queues.medium_priority|intcomma }} {% trans "High priority" %} {{ queues.high_priority|intcomma }}{% trans "Queues" %}
+
{% trans "ID" %} | +{% trans "Task name" %} | +{% trans "Run time" %} | +{% trans "Priority" %} | +
---|---|---|---|
+ {% trans "No active tasks" %} + | +|||
{{ task.id }} | +{{ task.name|shortname }} | +{{ task.time_start|runtime }} | +{{ task.delivery_info.routing_key }} | +
{{ error }}+{% endfor %} + +