views.generic.edit.ModelFormMixin.form_invalid()

form_invalid() Renders a response, providing the invalid form as context.

core.files.images.ImageFile.height

height Height of the image in pixels.

gis.geoip.GeoIP.region_by_addr()

GeoIP.region_by_addr(query)

gis.gdal.OGRGeometry.point_count

point_count Returns the number of points used to describe this geometry: >>> polygon.point_count 4

utils.translation.check_for_language()

check_for_language(lang_code) [source] Checks whether there is a global language file for the given language code (e.g. ‘fr’, ‘pt_BR’). This is used to decide whether a user-provided language is available.

gis.gdal.OGRGeometry.area

area Returns the area of this geometry, or 0 for geometries that do not contain an area: >>> polygon.area 25.0

auth.models.Permission.name

name Required. 255 characters or fewer. Example: 'Can vote'.

apps.AppConfig.path

AppConfig.path Filesystem path to the application directory, e.g. '/usr/lib/python3.4/dist-packages/django/contrib/admin'. In most cases, Django can automatically detect and set this, but you can also provide an explicit override as a class attribute on your AppConfig subclass. In a few situations this is required; for instance if the app package is a namespace package with multiple paths.

admin.ModelAdmin.filter_vertical

ModelAdmin.filter_vertical Same as filter_horizontal, but uses a vertical display of the filter interface with the box of unselected options appearing above the box of selected options.

gis.gdal.GDALBand

class GDALBand GDALBand instances are not created explicitly, but rather obtained from a GDALRaster object, through its bands attribute. The GDALBands contain the actual pixel values of the raster. description The name or description of the band, if any. width The width of the band in pixels (X-axis). height The height of the band in pixels (Y-axis). pixel_count New in Django 1.9. The total number of pixels in this band. Is equal to width * height. statistics(refre