forms.BoundField.label

BoundField.label The label of the field. This is used in label_tag().

views.generic.dates.WeekMixin.get_next_week()

get_next_week(date) [source] Returns a date object containing the first day of the week after the date provided. This function can also return None or raise an Http404 exception, depending on the values of allow_empty and allow_future.

http.HttpRequest.readline()

HttpRequest.readline() [source]

http.HttpRequest.urlconf

HttpRequest.urlconf This will be used as the root URLconf for the current request, overriding the ROOT_URLCONF setting. See How Django processes a request for details. urlconf can be set to None to revert any changes made by previous middleware and return to using the ROOT_URLCONF. Changed in Django 1.9: Setting urlconf=None raised ImproperlyConfigured in older versions.

postgres.validators.RangeMaxValueValidator

class RangeMaxValueValidator(limit_value, message=None) [source] Validates that the upper bound of the range is not greater than limit_value.

gis.db.models.functions.Difference

class Difference(expr1, expr2, **extra) Availability: MySQL (≥ 5.6.1), PostGIS, Oracle, SpatiaLite Accepts two geographic fields or expressions and returns the geometric difference, that is the part of geometry A that does not intersect with geometry B. Changed in Django 1.10: MySQL support was added.

gis.gdal.GeometryCollection.add()

add(geom) Adds a geometry to this geometry collection. Not applicable to other geometry types.

core.validators.EmailValidator.message

message The error message used by ValidationError if validation fails. Defaults to "Enter a valid email address".

contenttypes.models.ContentType.model

model The name of the model class. Additionally, the following property is available:

auth.mixins.PermissionRequiredMixin.get_permission_required()

get_permission_required() Returns an iterable of permission names used by the mixin. Defaults to the permission_required attribute, converted to a tuple if necessary.