postgres.fields.RangeField.base_field

base_field The model field class to use.

postgres.search.SearchQuery

class SearchQuery(value, config=None) [source] SearchQuery translates the terms the user provides into a search query object that the database compares to a search vector. By default, all the words the user provides are passed through the stemming algorithms, and then it looks for matches for all of the resulting terms. SearchQuery terms can be combined logically to provide more flexibility: >>> from django.contrib.postgres.search import SearchQuery >>> SearchQuery('potato'

gis.gdal.Envelope.max_y

max_y The value of the maximum Y coordinate.

forms.MultiValueField.fields

fields A tuple of fields whose values are cleaned and subsequently combined into a single value. Each value of the field is cleaned by the corresponding field in fields – the first value is cleaned by the first field, the second value is cleaned by the second field, etc. Once all fields are cleaned, the list of clean values is combined into a single value by compress(). Also takes one extra optional argument:

forms.MultiValueField.widget

widget Must be a subclass of django.forms.MultiWidget. Default value is TextInput, which probably is not very useful in this case.

auth.models.User.get_short_name()

get_short_name() Returns the first_name.

gis.forms.GeometryCollectionField

class GeometryCollectionField

forms.PasswordInput

class PasswordInput [source] Password input: <input type='password' ...> Takes one optional argument: render_value Determines whether the widget will have a value filled in when the form is re-displayed after a validation error (default is False).

forms.FilePathField.match

match A regular expression pattern; only files with names matching this expression will be allowed as choices.

core.files.storage.Storage.open()

open(name, mode='rb') [source] Opens the file given by name. Note that although the returned file is guaranteed to be a File object, it might actually be some subclass. In the case of remote file storage this means that reading/writing could be quite slow, so be warned.