gis.geos.PreparedGeometry.crosses()

crosses(other)

postgres.aggregates.BoolOr

class BoolOr(expression, **extra) [source] Returns True if at least one input value is true, None if all values are null or if there are no values, otherwise False.

views.generic.base.RedirectView.url

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

postgres.fields.RangeField.range_type

range_type The psycopg2 range type to use.

core.validators.int_list_validator()

int_list_validator(sep=', ', message=None, code='invalid', allow_negative=False) [source] New in Django 1.9. Returns a RegexValidator instance that ensures a string consists of integers separated by sep. It allows negative integers when allow_negative is True. Changed in Django 1.10: The allow_negative parameter was added.

gis.db.models.functions.MakeValid

class MakeValid(expr) New in Django 1.10. Availability: PostGIS Accepts a geographic field or expression and attempts to convert the value into a valid geometry without losing any of the input vertices. Geometries that are already valid are returned without changes. Simple polygons might become a multipolygon and the result might be of lower dimension than the input.

admin.ModelAdmin.change_list_template

ModelAdmin.change_list_template Path to a custom template, used by changelist_view().

Settings

Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as MIDDLEWARE_CLASSES and STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish to use. Core Settings Here’s a list of settings available in Django core and their default values. Settings provided by contrib apps are listed below, followed by a

core.files.storage.Storage.accessed_time()

accessed_time(name) [source] Returns a naive datetime object containing the last accessed time of the file. For storage systems that aren’t able to return the last accessed time this will raise NotImplementedError instead. Deprecated since version 1.10: Use get_accessed_time() instead.

sessions.backends.base.SessionBase.get_expire_at_browser_close()

get_expire_at_browser_close() Returns either True or False, depending on whether the user’s session cookie will expire when the user’s Web browser is closed.