diff --git a/docs/faq/usage.txt b/docs/faq/usage.txt
index 6e1f0da..49f4290 100644
a
|
b
|
Using a :class:`~django.db.models.FileField` or an
|
66 | 66 | Django. For example, if your :class:`~django.db.models.ImageField` is |
67 | 67 | called ``mug_shot``, you can get the absolute URL to your image in a |
68 | 68 | template with ``{{ object.mug_shot.url }}``. |
| 69 | |
| 70 | How do I make a variable available to all my templates? |
| 71 | ------------------------------------------------------- |
| 72 | |
| 73 | Sometimes your templates just all need the same thing. A common example would |
| 74 | be dynamically-generated menus. At first glance, it seems logical to simply |
| 75 | add a common dictionary to the template context. |
| 76 | |
| 77 | The correct solution is to use a ``RequestContext``. Details on how to do this |
| 78 | are here: :ref:`subclassing-context-requestcontext`. |