You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/views/async-class-based-views/detail.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,13 @@ some of the base classes for `DetailView` have been re-written as async:
32
32
33
33
#### AsyncSingleObjectMixin
34
34
35
-
like [SingleObjectMixin](https://docs.djangoproject.com/en/5.1/ref/class-based-views/mixins-single-object/#django.views.generic.detail.SingleObjectMixin) but `get_object()` and `get_queryset()` are async.
35
+
like [SingleObjectMixin](https://docs.djangoproject.com/en/5.1/ref/class-based-views/mixins-single-object/#django.views.generic.detail.SingleObjectMixin)
36
+
with these differences:
37
+
38
+
* inherits from [AsyncContextMixin](base.md#asynccontextmixin)
0 commit comments