Skip to content

Commit 7144fc9

Browse files
Updated the ecosystem page with Django Tasks changes. (#2519)
* Updated the ecosystem page with Django Tasks changes. Changes the mention of django-tasks state that it's a backport library. It also adds the two supported backends, db and RQ to the page. * Use the django tasks package names instead of human names.
1 parent a330cd4 commit 7144fc9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

djangoproject/templates/aggregator/ecosystem.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,16 @@ <h3 id="tasks">
326326
</h3>
327327
<ul>
328328
<li>
329-
<a href="https://github.com/RealOrangeOne/django-tasks">Django Tasks</a>
330-
&mdash; A lightweight task queue for Django applications, suitable for simple background task processing.
329+
<a href="https://github.com/RealOrangeOne/django-tasks-db">django-tasks-db</a>
330+
&mdash; A lightweight task queue for Django applications, with an ORM-based backend, suitable for simple background task processing.
331+
</li>
332+
<li>
333+
<a href="https://github.com/RealOrangeOne/django-tasks-rq">django-tasks-rq</a>
334+
&mdash; A lightweight task queue for Django applications, with an <a href="https://python-rq.org/">RQ-based</a> backend, suitable for simple background task processing.
335+
</li>
336+
<li>
337+
<a href="https://github.com/RealOrangeOne/django-tasks">django-tasks</a>
338+
&mdash; A backport of <code>django.tasks</code> - Django's built-in <a href="https://docs.djangoproject.com/en/stable/topics/tasks/">Tasks framework</a>.
331339
</li>
332340
</ul>
333341

0 commit comments

Comments
 (0)