diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index 9759ed8..b10780b 100644
a
|
b
|
The currently logged-in user and his/her permissions are made available in the
|
1125 | 1125 | Users |
1126 | 1126 | ----- |
1127 | 1127 | |
1128 | | The currently logged-in user, either a |
1129 | | :class:`~django.contrib.auth.models.User` instance or an |
1130 | | :class:`~django.contrib.auth.models.AnonymousUser` instance, is stored in the |
1131 | | template variable ``{{ user }}``: |
| 1128 | When rendering a template :class:`~django.template.context.RequestContext`, the |
| 1129 | currently logged-in user, either a :class:`~django.contrib.auth.models.User` |
| 1130 | instance or an :class:`~django.contrib.auth.models.AnonymousUser` instance, is |
| 1131 | stored in the template variable ``{{ user }}``: |
1132 | 1132 | |
1133 | 1133 | .. code-block:: html |
1134 | 1134 | |
… |
… |
template variable ``{{ user }}``:
|
1138 | 1138 | <p>Welcome, new user. Please log in.</p> |
1139 | 1139 | {% endif %} |
1140 | 1140 | |
| 1141 | This template context variable is not available if a ``RequestContext`` is not |
| 1142 | being used. |
| 1143 | |
1141 | 1144 | Permissions |
1142 | 1145 | ----------- |
1143 | 1146 | |