Skip to content

Commit e87fcbb

Browse files
Add link to Classy DRF in docs (#5683)
Closes #5636 as per #5636 (comment)
1 parent b3a0b27 commit e87fcbb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/api-guide/views.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ For example:
4242
usernames = [user.username for user in User.objects.all()]
4343
return Response(usernames)
4444

45+
---
46+
47+
**Note**: The full methods, attributes on, and relations between Django REST Framework's `APIView`, `GenericAPIView`, various `Mixins`, and `Viewsets` can be initially complex. In addition to the documentation here, the [Classy Django REST Framework][classy-drf] resource provides a browsable reference, with full methods and attributes, for each of Django REST Framework's class-based views.
48+
49+
---
50+
51+
4552
## API policy attributes
4653

4754
The following attributes control the pluggable aspects of API views.
@@ -212,3 +219,5 @@ You may pass `None` in order to exclude the view from schema generation.
212219
[settings]: settings.md
213220
[throttling]: throttling.md
214221
[schemas]: schemas.md
222+
[classy-drf]: http://www.cdrf.co
223+

0 commit comments

Comments
 (0)