views.generic.base.View.http_method_names

http_method_names The list of HTTP method names that this view will accept. Default:

2016-10-09 18:40:50
views.generic.base.TemplateView

class django.views.generic.base.TemplateView Renders a given template, with the context containing parameters captured in the

2016-10-09 18:40:49
views.generic.base.View.dispatch()

dispatch(request, *args, **kwargs) The view part of the view – the method that accepts a request argument

2016-10-09 18:40:49
views.generic.base.View.http_method_not_allowed()

http_method_not_allowed(request, *args, **kwargs) If the view was called with a HTTP method it doesn’t support, this method

2016-10-09 18:40:50
views.generic.base.RedirectView.pattern_name

pattern_name The name of the URL pattern to redirect to. Reversing will be done using the same args and kwargs as are passed

2016-10-09 18:40:47
views.generic.base.RedirectView

class django.views.generic.base.RedirectView Redirects to a given URL. The given URL may contain

2016-10-09 18:40:47
views.generic.base.RedirectView.query_string

query_string Whether to pass along the GET query string to the new location. If True, then the query string is

2016-10-09 18:40:48
views.generic.base.RedirectView.url

url The URL to redirect to, as a string. Or None to raise a 410 (Gone) HTTP error.

2016-10-09 18:40:48
views.generic.base.View

class django.views.generic.base.View The master class-based base view. All other class-based views inherit from this base class

2016-10-09 18:40:49
views.generic.base.RedirectView.permanent

permanent Whether the redirect should be permanent. The only difference here is the HTTP status code returned. If True

2016-10-09 18:40:48