mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Add link to Classy DRF in docs (#5683)
Closes #5636 as per https://github.com/encode/django-rest-framework/issues/5636#issuecomment-348143281
This commit is contained in:
parent
b3a0b271cd
commit
e87fcbb99d
|
@ -42,6 +42,13 @@ For example:
|
||||||
usernames = [user.username for user in User.objects.all()]
|
usernames = [user.username for user in User.objects.all()]
|
||||||
return Response(usernames)
|
return Response(usernames)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**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.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
## API policy attributes
|
## API policy attributes
|
||||||
|
|
||||||
The following attributes control the pluggable aspects of API views.
|
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.
|
||||||
[settings]: settings.md
|
[settings]: settings.md
|
||||||
[throttling]: throttling.md
|
[throttling]: throttling.md
|
||||||
[schemas]: schemas.md
|
[schemas]: schemas.md
|
||||||
|
[classy-drf]: http://www.cdrf.co
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user