gis.gdal.Feature.num_fields

num_fields Returns the number of fields of data associated with the feature. This will be the same for all features in a given layer and is equivalent to the Layer.num_fields property of the Layer object the feature came from.

http.HttpResponse.content

HttpResponse.content A bytestring representing the content, encoded from a Unicode object if necessary.

gis.admin.GeoModelAdmin.map_height

map_height Height of the map, in pixels. Defaults to 400.

admin.ModelAdmin.delete_selected_confirmation_template

ModelAdmin.delete_selected_confirmation_template Path to a custom template, used by the delete_selected action method for displaying a confirmation page when deleting one or more objects. See the actions documentation.

auth.backends.RemoteUserBackend.create_unknown_user

RemoteUserBackend.create_unknown_user True or False. Determines whether or not a User object is created if not already in the database. Defaults to True.

sitemaps.Sitemap.i18n

i18n Optional. A boolean attribute that defines if the URLs of this sitemap should be generated using all of your LANGUAGES. The default is False.

sessions.backends.cached_db.SessionStore

class backends.cached_db.SessionStore Implements cached database-backed session store. cache_key_prefix New in Django 1.9. A prefix added to a session key to build a cache key string.

gis.db.models.BaseSpatialField.spatial_index

BaseSpatialField.spatial_index Defaults to True. Creates a spatial index for the given geometry field. Note This is different from the db_index field option because spatial indexes are created in a different manner than regular database indexes. Specifically, spatial indexes are typically created using a variant of the R-Tree, while regular database indexes typically use B-Trees.

gis.gdal.OGRGeometry.union()

union() Returns the region consisting of the union of this geometry and the other, as a new OGRGeometry object.

sites.managers.CurrentSiteManager

class managers.CurrentSiteManager If Site plays a key role in your application, consider using the helpful CurrentSiteManager in your model(s). It’s a model manager that automatically filters its queries to include only objects associated with the current Site. Mandatory SITE_ID The CurrentSiteManager is only usable when the SITE_ID setting is defined in your settings. Use CurrentSiteManager by adding it to your model explicitly. For example: from django.db import models from django.contri