gis.gdal.SpatialReference.name

name Returns the name of this Spatial Reference.

auth.models.Group.permissions

permissions Many-to-many field to Permission: group.permissions.set([permission_list]) group.permissions.add(permission, permission, ...) group.permissions.remove(permission, permission, ...) group.permissions.clear()

gis.admin.GeoModelAdmin.openlayers_url

openlayers_url Link to the URL of the OpenLayers JavaScript. Defaults to 'http://openlayers.org/api/2.13.1/OpenLayers.js'.

db.models.Options.proxy

Options.proxy If proxy = True, a model which subclasses another model will be treated as a proxy model.

urls.ResolverMatch.func

func The view function that would be used to serve the URL

gis.geos.GEOSGeometry.simple

GEOSGeometry.simple Returns a boolean indicating whether the geometry is ‘simple’. A geometry is simple if and only if it does not intersect itself (except at boundary points). For example, a LineString object is not simple if it intersects itself. Thus, LinearRing and Polygon objects are always simple because they do cannot intersect themselves, by definition.

gis.geoip.GeoIP.country_info

GeoIP.country_info This property returns information about the GeoIP country database.

admin.ModelAdmin.fieldsets

ModelAdmin.fieldsets Set fieldsets to control the layout of admin “add” and “change” pages. fieldsets is a list of two-tuples, in which each two-tuple represents a <fieldset> on the admin form page. (A <fieldset> is a “section” of the form.) The two-tuples are in the format (name, field_options), where name is a string representing the title of the fieldset and field_options is a dictionary of information about the fieldset, including a list of fields to be displayed in it. A ful

views.generic.list.MultipleObjectMixin.get_paginator()

get_paginator(queryset, per_page, orphans=0, allow_empty_first_page=True) Returns an instance of the paginator to use for this view. By default, instantiates an instance of paginator_class.

db.models.EmailField

class EmailField(max_length=254, **options) [source] A CharField that checks that the value is a valid email address. It uses EmailValidator to validate the input.