diff options
| author | Tim Graham <timograham@gmail.com> | 2013-08-10 18:08:05 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-10 18:08:05 -0400 |
| commit | ab680725bfb2f0d79cff26331b30a3d583c55a80 (patch) | |
| tree | b32380ae9ffdcef17c7793926de8a866c4fcf100 /docs/topics | |
| parent | 6e70f47d02a9c5d32c0d3e88cdd6f0f93458e7ca (diff) | |
Fixed #20890 -- Added missing import in class-based view docs.
Thanks André Augusto.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/class-based-views/intro.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt index a65b887921..5986ff2ea7 100644 --- a/docs/topics/class-based-views/intro.txt +++ b/docs/topics/class-based-views/intro.txt @@ -198,6 +198,7 @@ A similar class-based view might look like:: from django.http import HttpResponseRedirect from django.shortcuts import render + from django.views.generic.base import View from .forms import MyForm |
