views.generic.dates.BaseDateListView.date_list_period

date_list_period Optional A string defining the aggregation period for date_list. It must be one of 'year' (default), 'month', or 'day'.

core.files.uploadhandler.FileUploadHandler

class FileUploadHandler [source] All file upload handlers should be subclasses of django.core.files.uploadhandler.FileUploadHandler. You can define upload handlers wherever you wish.

views.generic.list.BaseListView

class django.views.generic.list.BaseListView A base view for displaying a list of objects. It is not intended to be used directly, but rather as a parent class of the django.views.generic.list.ListView or other views representing lists of objects. Ancestors (MRO) This view inherits methods and attributes from the following views: django.views.generic.list.MultipleObjectMixin django.views.generic.base.View Methods get(request, *args, **kwargs) Adds object_list to the context. If allow_em

gis.gdal.OGRGeometry.difference()

difference() Returns the region consisting of the difference of this geometry and the other, as a new OGRGeometry object.

db.models.functions.datetime.TruncDay

class TruncDay(expression, output_field=None, tzinfo=None, **extra) [source] kind = 'day'

auth.models.User.last_name

last_name Optional. 30 characters or fewer.

template.Library.inclusion_tag()

django.template.Library.inclusion_tag() Another common type of template tag is the type that displays some data by rendering another template. For example, Django’s admin interface uses custom template tags to display the buttons along the bottom of the “add/change” form pages. Those buttons always look the same, but the link targets change depending on the object being edited – so they’re a perfect case for using a small template that is filled with details from the current object. (In the

forms.HiddenInput

class HiddenInput [source] Hidden input: <input type='hidden' ...> Note that there also is a MultipleHiddenInput widget that encapsulates a set of hidden input elements.

forms.EmailInput

class EmailInput [source] Text input: <input type="email" ...>

forms.NumberInput

class NumberInput [source] Text input: <input type="number" ...> Beware that not all browsers support entering localized numbers in number input types. Django itself avoids using them for fields having their localize property set to True.