gis.geos.PreparedGeometry.crosses()

crosses(other)

gis.widgets.BaseGeometryWidget.map_width

BaseGeometryWidget.map_width Height and width of the widget map (default is 400x600).

views.generic.detail.SingleObjectMixin.get_slug_field()

get_slug_field() Returns the name of a slug field to be used to look up by slug. By default this simply returns the value of slug_field.

http.HttpRequest.content_type

HttpRequest.content_type New in Django 1.10. A string representing the MIME type of the request, parsed from the CONTENT_TYPE header.

forms.SplitDateTimeField.input_time_formats

input_time_formats A list of formats used to attempt to convert a string to a valid datetime.time object. If no input_time_formats argument is provided, the default input formats for TimeField are used.

core.validators.MinValueValidator

class MinValueValidator(min_value, message=None) [source] Raises a ValidationError with a code of 'min_value' if value is less than min_value.

views.generic.edit.DeletionMixin.get_success_url()

get_success_url() Returns the url to redirect to when the nominated object has been successfully deleted. Returns success_url by default.

Authenticating against Django’s user database from Apache

Since keeping multiple authentication databases in sync is a common problem when dealing with Apache, you can configure Apache to authenticate against Django’s authentication system directly. This requires Apache version >= 2.2 and mod_wsgi >= 2.0. For example, you could: Serve static/media files directly from Apache only to authenticated users. Authenticate access to a Subversion repository against Django users with a certain permission. Allow certain users to connect to a WebDAV share c

admin.ModelAdmin.delete_view()

ModelAdmin.delete_view(request, object_id, extra_context=None) [source] Django view for the model instance(s) deletion confirmation page. See note below.

gis.gdal.OGRGeometry.geos

geos Returns a GEOSGeometry object corresponding to this geometry.