admin.AdminSite.app_index_template

AdminSite.app_index_template Path to a custom template that will be used by the admin site app index view.

gis.gdal.SpatialReference.auth_name()

auth_name(target) Returns the authority name for the given string target node.

auth.models.User.email_user()

email_user(subject, message, from_email=None, **kwargs) Sends an email to the user. If from_email is None, Django uses the DEFAULT_FROM_EMAIL. Any **kwargs are passed to the underlying send_mail() call.

auth.mixins.AccessMixin.permission_denied_message

permission_denied_message Default return value for get_permission_denied_message(). Defaults to an empty string.

gis.geos.GEOSGeometry.envelope

GEOSGeometry.envelope Returns a Polygon that represents the bounding envelope of this geometry. Note that it can also return a Point if the input geometry is a point.

db.models.OneToOneField.parent_link

OneToOneField.parent_link When True and used in a model which inherits from another concrete model, indicates that this field should be used as the link back to the parent class, rather than the extra OneToOneField which would normally be implicitly created by subclassing. See One-to-one relationships for usage examples of OneToOneField.

db.models.Field.validators

Field.validators A list of validators to run for this field. See the validators documentation for more information.

views.generic.base.RedirectView

class django.views.generic.base.RedirectView Redirects to a given URL. The given URL may contain dictionary-style string formatting, which will be interpolated against the parameters captured in the URL. Because keyword interpolation is always done (even if no arguments are passed in), any "%" characters in the URL must be written as "%%" so that Python will convert them to a single percent sign on output. If the given URL is None, Django will return an HttpResponseGone (410). Ancestors (MRO

Built-in class-based views API

Class-based views API reference. For introductory material, see the Class-based views topic guide. Base viewsView TemplateView RedirectView Generic display viewsDetailView ListView Generic editing viewsFormView CreateView UpdateView DeleteView Generic date viewsArchiveIndexView YearArchiveView MonthArchiveView WeekArchiveView DayArchiveView TodayArchiveView DateDetailView Class-based views mixins Simple mixinsContextMixin TemplateResponseMixin Single object mixinsSingleObjectMixin Si

db.transaction.savepoint()

savepoint(using=None) [source] Creates a new savepoint. This marks a point in the transaction that is known to be in a “good” state. Returns the savepoint ID (sid).