core.checks.Warning

class Warning(msg, hint=None obj=None, id=None) [source]

http.HttpRequest.path_info

HttpRequest.path_info Under some Web server configurations, the portion of the URL after the host name is split up into a script prefix portion and a path info portion. The path_info attribute always contains the path info portion of the path, no matter what Web server is being used. Using this instead of path can make your code easier to move between test and deployment servers. For example, if the WSGIScriptAlias for your application is set to "/minfo", then path might be "/minfo/music/ban

gis.geos.GEOSGeometry.wkt

GEOSGeometry.wkt Returns the Well-Known Text of the geometry (an OGC standard). Changed in Django 1.10: Non-significant zeros are stripped from the output.

auth.is_active

is_active Returns True if the user account is currently active.

forms.CharField.strip

strip New in Django 1.9. If True (default), the value will be stripped of leading and trailing whitespace.

forms.ModelChoiceField.queryset

queryset A QuerySet of model objects from which the choices for the field will be derived, and which will be used to validate the user’s selection. ModelChoiceField also takes two optional arguments:

db.models.AutoField

class AutoField(**options) [source] An IntegerField that automatically increments according to available IDs. You usually won’t need to use this directly; a primary key field will automatically be added to your model if you don’t specify otherwise. See Automatic primary key fields.

gis.geos.GEOSGeometry.coords

GEOSGeometry.coords Returns the coordinates of the geometry as a tuple.

utils.feedgenerator.SyndicationFeed.latest_post_date()

latest_post_date() [source] Returns the latest pubdate or updateddate for all items in the feed. If no items have either of these attributes this returns the current date/time.

views.generic.dates.YearArchiveView.make_object_list

make_object_list A boolean specifying whether to retrieve the full list of objects for this year and pass those to the template. If True, the list of objects will be made available to the context. If False, the None queryset will be used as the object list. By default, this is False.