db.models.Options.verbose_name_plural

Options.verbose_name_plural The plural name for the object: verbose_name_plural = "stories" If this isn’t given, Django will use verbose_name + "s".

forms.DecimalField.min_value

min_value These control the range of values permitted in the field, and should be given as decimal.Decimal values.

gis.geoip2.GeoIP2.lat_lon()

GeoIP2.lat_lon(query) Returns a coordinate tuple of (latitude, longitude),

Generic views

See Built-in class-based views API.

gis.gdal.OGRGeometry.point_count

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

gis.geoip.GeoIP.region_by_addr()

GeoIP.region_by_addr(query)

core.files.images.ImageFile.height

height Height of the image in pixels.

forms.GenericIPAddressField

class GenericIPAddressField(**kwargs) [source] A field containing either an IPv4 or an IPv6 address. Default widget: TextInput Empty value: '' (an empty string) Normalizes to: A Unicode object. IPv6 addresses are normalized as described below. Validates that the given value is a valid IP address. Error message keys: required, invalid The IPv6 address normalization follows RFC 4291#section-2.2 section 2.2, including using the IPv4 format suggested in paragraph 3 of that section, like ::ff

views.debug.SafeExceptionReporterFilter.get_traceback_frame_variables()

SafeExceptionReporterFilter.get_traceback_frame_variables(request, tb_frame) [source] Returns the filtered dictionary of local variables for the given traceback frame. By default it replaces the values of sensitive variables with stars (**********). See also You can also set up custom error reporting by writing a custom piece of exception middleware. If you do write custom error handling, it’s a good idea to emulate Django’s built-in error handling and only report/log errors if DEBUG is Fal

views.generic.edit.FormMixin.form_valid()

form_valid(form) Redirects to get_success_url().