summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorJames Bennett <james@b-list.org>2013-06-20 01:51:20 -0500
committerTim Graham <timograham@gmail.com>2013-07-08 13:59:54 -0400
commitc0f03175ceeb132b88d6ff81d28d397e5a303989 (patch)
tree57d40040b3e82f4b058690f33cf80f6ab4b9396b /docs/ref/forms
parent660c30ed953667b44bdec7058dafe10e0a8ce402 (diff)
Fixed #19695 -- Retitle "Form Media" to "Form Assets".
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/widgets.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 341574ad37..5b66776cfc 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -171,16 +171,15 @@ You can also set the HTML ``id`` using :attr:`~Widget.attrs`. See
Styling widget classes
^^^^^^^^^^^^^^^^^^^^^^
-With widgets, it is possible to add media (``css`` and ``javascript``)
+With widgets, it is possible to add assets (``css`` and ``javascript``)
and more deeply customize their appearance and behavior.
In a nutshell, you will need to subclass the widget and either
-:ref:`define a class "Media" <media-as-a-static-definition>` as a member of the
-subclass, or :ref:`create a property "media" <dynamic-property>`, returning an
-instance of that class.
+:ref:`define a "Media" inner class <assets-as-a-static-definition>` or
+:ref:`create a "media" property <dynamic-property>`.
These methods involve somewhat advanced Python programming and are described in
-detail in the :doc:`Form Media </topics/forms/media>` topic guide.
+detail in the :doc:`Form Assets </topics/forms/media>` topic guide.
.. _base-widget-classes: