Fixed #22007 -- Fixed cbv docs - make imports consistent

Thanks to trac user kinjal.dixit for the report.
This commit is contained in:
Martin Matusiak 2014-02-22 13:39:33 +01:00 committed by Baptiste Mispelon
parent 926e18d7d1
commit d399731bf2
2 changed files with 11 additions and 3 deletions

View File

@ -30,6 +30,14 @@ Python style
* Use ``InitialCaps`` for class names (or for factory functions that * Use ``InitialCaps`` for class names (or for factory functions that
return classes). return classes).
* Use convenience imports whenever available. For example, do this::
from django.views.generic import View
Don't do this::
from django.views.generic.base import View
* In docstrings, use "action words" such as:: * In docstrings, use "action words" such as::
def foo(): def foo():

View File

@ -71,7 +71,7 @@ something like::
In a class-based view, this would become:: In a class-based view, this would become::
from django.http import HttpResponse from django.http import HttpResponse
from django.views.generic.base import View from django.views.generic import View
class MyView(View): class MyView(View):
def get(self, request): def get(self, request):
@ -113,7 +113,7 @@ and methods in the subclass. So that if your parent class had an attribute
``greeting`` like this:: ``greeting`` like this::
from django.http import HttpResponse from django.http import HttpResponse
from django.views.generic.base import View from django.views.generic import View
class GreetingView(View): class GreetingView(View):
greeting = "Good Day" greeting = "Good Day"
@ -198,7 +198,7 @@ A similar class-based view might look like::
from django.http import HttpResponseRedirect from django.http import HttpResponseRedirect
from django.shortcuts import render from django.shortcuts import render
from django.views.generic.base import View from django.views.generic import View
from .forms import MyForm from .forms import MyForm