template.loaders.base.Loader.get_template()

get_template(template_name, skip=None) [source] Returns a Template object for a given template_name by looping through results from get_template_sources() and calling get_contents(). This returns the first matching template. If no template is found, TemplateDoesNotExist is raised. The optional skip argument is a list of origins to ignore when extending templates. This allow templates to extend other templates of the same name. It also used to avoid recursion errors. In general, it is enough

core.management.BaseCommand.missing_args_message

BaseCommand.missing_args_message If your command defines mandatory positional arguments, you can customize the message error returned in the case of missing arguments. The default is output by argparse (“too few arguments”).

template.response.TemplateResponse

class TemplateResponse [source] TemplateResponse is a subclass of SimpleTemplateResponse that knows about the current HttpRequest.

auth.forms.SetPasswordForm

class SetPasswordForm A form that lets a user change their password without entering the old password.

gis.geos.GEOSGeometry.num_geom

GEOSGeometry.num_geom Returns the number of geometries in this geometry. In other words, will return 1 on anything but geometry collections.

db.models.query.QuerySet.using()

using(alias) This method is for controlling which database the QuerySet will be evaluated against if you are using more than one database. The only argument this method takes is the alias of a database, as defined in DATABASES. For example: # queries the database with the 'default' alias. >>> Entry.objects.all() # queries the database with the 'backup' alias >>> Entry.objects.using('backup')

gis.geos.GEOSGeometry.geojson

GEOSGeometry.geojson Alias for GEOSGeometry.json.

postgres.aggregates.RegrAvgX

class RegrAvgX(y, x) [source] Returns the average of the independent variable (sum(x)/N) as a float, or None if there aren’t any matching rows.

gis.gdal.SpatialReference.to_esri()

to_esri() Morphs this SpatialReference to ESRI’s format.

db.models.SmallIntegerField

class SmallIntegerField(**options) [source] Like an IntegerField, but only allows values under a certain (database-dependent) point. Values from -32768 to 32767 are safe in all databases supported by Django.