http.QueryDict.getlist()

QueryDict.getlist(key, default=None) Returns the data with the requested key, as a Python list. Returns an empty list if the key doesn’t exist and no default value was provided. It’s guaranteed to return a list of some sort unless the default value provided is not a list.

views.generic.base.TemplateResponseMixin.template_name

template_name The full name of a template to use as defined by a string. Not defining a template_name will raise a django.core.exceptions.ImproperlyConfigured exception.

sessions.backends.base.SessionBase.pop()

pop(key, default=__not_given) Example: fav_color = request.session.pop('fav_color', 'blue')

db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_tablespace()

BaseDatabaseSchemaEditor.alter_db_tablespace(model, old_db_tablespace, new_db_tablespace) [source] Moves the model’s table from one tablespace to another.

db.models.ForeignKey.on_delete

ForeignKey.on_delete When an object referenced by a ForeignKey is deleted, Django will emulate the behavior of the SQL constraint specified by the on_delete argument. For example, if you have a nullable ForeignKey and you want it to be set null when the referenced object is deleted: user = models.ForeignKey( User, models.SET_NULL, blank=True, null=True, ) Deprecated since version 1.9: on_delete will become a required argument in Django 2.0. In older versions it defaults to

syndication.views.Feed

class views.Feed This example illustrates all possible attributes and methods for a Feed class: from django.contrib.syndication.views import Feed from django.utils import feedgenerator class ExampleFeed(Feed): # FEED TYPE -- Optional. This should be a class that subclasses # django.utils.feedgenerator.SyndicationFeed. This designates # which type of feed this should be: RSS 2.0, Atom 1.0, etc. If # you don't specify feed_type, your feed will be RSS 2.0. This # should be

gis.forms.PointField

class PointField

forms.URLField.max_length

max_length

gis.gdal.OGRGeometry.coords

coords An alias for tuple.

gis.geos.GEOSGeometry.project()

GEOSGeometry.project(point)