aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resourceexample/views.py')
-rw-r--r--examples/resourceexample/views.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/resourceexample/views.py b/examples/resourceexample/views.py
index e6b5eeb8..44c4176a 100644
--- a/examples/resourceexample/views.py
+++ b/examples/resourceexample/views.py
@@ -16,12 +16,12 @@ class ExampleView(View):
"""
Handle GET requests, returning a list of URLs pointing to 3 other views.
"""
- return {"Some other resources": [reverse('another-example', kwargs={'num':num}) for num in range(3)]}
+ return Response({"Some other resources": [reverse('another-example', kwargs={'num':num}) for num in range(3)]})
class AnotherExampleView(View):
"""
- A basic view, that can be handle GET and POST requests.
+ A basic view, that can handle GET and POST requests.
Applies some simple form validation on POST requests.
"""
form = MyForm
@@ -33,7 +33,7 @@ class AnotherExampleView(View):
"""
if int(num) > 2:
return Response(status.HTTP_404_NOT_FOUND)
- return "GET request to AnotherExampleResource %s" % num
+ return Response("GET request to AnotherExampleResource %s" % num)
def post(self, request, num):
"""
@@ -42,4 +42,4 @@ class AnotherExampleView(View):
"""
if int(num) > 2:
return Response(status.HTTP_404_NOT_FOUND)
- return "POST request to AnotherExampleResource %s, with content: %s" % (num, repr(self.CONTENT))
+ return Response("POST request to AnotherExampleResource %s, with content: %s" % (num, repr(self.CONTENT)))