Merge pull request #453 from yprez/docs_fix

api-guide/views.md - add imports to code example
This commit is contained in:
Stephan Groß 2012-11-27 22:30:13 -08:00
commit 77fa98d839

View File

@ -19,6 +19,10 @@ Using the `APIView` class is pretty much the same as using a regular `View` clas
For example:
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import authentication, permissions
class ListUsers(APIView):
"""
View to list all users in the system.