diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index cb3ed99..6029e38 100644
|
a
|
b
|
module.
|
| 7 | 7 | |
| 8 | 8 | .. currentmodule:: django.contrib.postgres.fields |
| 9 | 9 | |
| 10 | | ArrayField |
| 11 | | ========== |
| | 10 | ``ArrayField`` |
| | 11 | ============== |
| 12 | 12 | |
| 13 | 13 | .. class:: ArrayField(base_field, size=None, **options) |
| 14 | 14 | |
| … |
… |
ArrayField
|
| 91 | 91 | If irregular shapes are required, then the underlying field should be made |
| 92 | 92 | nullable and the values padded with ``None``. |
| 93 | 93 | |
| 94 | | Querying ArrayField |
| 95 | | ------------------- |
| | 94 | Querying ``ArrayField`` |
| | 95 | ----------------------- |
| 96 | 96 | |
| 97 | 97 | There are a number of custom lookups and transforms for :class:`ArrayField`. |
| 98 | 98 | We will use the following example model:: |
| … |
… |
We will use the following example model::
|
| 109 | 109 | |
| 110 | 110 | .. fieldlookup:: arrayfield.contains |
| 111 | 111 | |
| 112 | | contains |
| 113 | | ~~~~~~~~ |
| | 112 | ``contains`` |
| | 113 | ~~~~~~~~~~~~ |
| 114 | 114 | |
| 115 | 115 | The :lookup:`contains` lookup is overridden on :class:`ArrayField`. The |
| 116 | 116 | returned objects will be those where the values passed are a subset of the |
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index f5ca010..9504d64 100644
|
a
|
b
|
widget on the field. In the following example, the
|
| 68 | 68 | See the :ref:`built-in widgets` for more information about which widgets |
| 69 | 69 | are available and which arguments they accept. |
| 70 | 70 | |
| 71 | | Widgets inheriting from the Select widget |
| 72 | | ========================================= |
| | 71 | Widgets inheriting from the ``Select`` widget |
| | 72 | ============================================= |
| 73 | 73 | |
| 74 | 74 | Widgets inheriting from the :class:`Select` widget deal with choices. They |
| 75 | 75 | present the user with a list of options to choose from. The different widgets |