From 0143586541a9f8ab0ae2d8cb3b76aada91eda45a Mon Sep 17 00:00:00 2001 From: James Beith Date: Thu, 29 Oct 2015 15:48:45 +0000 Subject: [PATCH] Adds import for `Response` --- docs/topics/html-and-forms.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/html-and-forms.md b/docs/topics/html-and-forms.md index b9ad0c651..82dd21640 100644 --- a/docs/topics/html-and-forms.md +++ b/docs/topics/html-and-forms.md @@ -18,6 +18,7 @@ Here's an example of a view that returns a list of "Profile" instances, rendered from my_project.example.models import Profile from rest_framework.renderers import TemplateHTMLRenderer + from rest_framework.response import Response from rest_framework.views import APIView