forms.BoundField.field

BoundField.field The form Field instance from the form class that this BoundField wraps.

utils.safestring.mark_for_escaping()

mark_for_escaping(s) [source] Deprecated since version 1.10. Explicitly mark a string as requiring HTML escaping upon output. Has no effect on SafeData subclasses. Can be called multiple times on a single string (the resulting escaping is only applied once).

template.context_processors.tz()

tz() [source] If this processor is enabled, every RequestContext will contain a variable TIME_ZONE, providing the name of the currently active time zone.

contenttypes.admin.GenericInlineModelAdmin.ct_field

ct_field The name of the ContentType foreign key field on the model. Defaults to content_type.

core.management.BaseCommand.handle()

BaseCommand.handle(*args, **options) [source] The actual logic of the command. Subclasses must implement this method. It may return a Unicode string which will be printed to stdout (wrapped by BEGIN; and COMMIT; if output_transaction is True).

db.models.Lookup.rhs

rhs The right-hand side - what lhs is being compared against. It can be a plain value, or something that compiles into SQL, typically an F() object or a QuerySet.

views.generic.list.MultipleObjectMixin

class django.views.generic.list.MultipleObjectMixin A mixin that can be used to display a list of objects. If paginate_by is specified, Django will paginate the results returned by this. You can specify the page number in the URL in one of two ways: Use the page parameter in the URLconf. For example, this is what your URLconf might look like: url(r'^objects/page(?P<page>[0-9]+)/$', PaginatedView.as_view()), Pass the page number via the page query-string parameter. For example, a UR

views.decorators.gzip.gzip_page()

gzip_page() This decorator compresses content if the browser allows gzip compression. It sets the Vary header accordingly, so that caches will base their storage on the Accept-Encoding header.

views.i18n.JavaScriptCatalog.domain

domain Translation domain containing strings to add in the view output. Defaults to 'djangojs'.

gis.gdal.Point.z

z Returns the Z coordinate of this point, or None if the point does not have a Z coordinate: >>> OGRGeometry('POINT (1 2 3)').z 3.0