Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

doc: Typo in django/basic_usage.md #991

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/howto/django/basic_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
Add your tasks to `tasks.py` in your Django app.
Inside tasks, you can use the classical ORM API or the [async ORM API] to access your models.

[async ORM API]: https://docs.djangoproject.com/en/4.2/topics/async/#queries-the-orm

```python
from procrastinate.contrib.django import app

Expand Down Expand Up @@ -60,7 +62,7 @@ async def myasyncview(request):
```

See {doc}`../basics/defer` for more details on how to defer jobs.
[async orm api]: https://docs.djangoproject.com/en/4.2/topics/async/#queries-the-orm


## Checking proper configuration

Expand Down
Loading