diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index c01079c..5c0a441 100644
a
|
b
|
In addition to the :func:`~views.login` view, the authentication system
|
872 | 872 | includes a few other useful built-in views located in |
873 | 873 | :mod:`django.contrib.auth.views`: |
874 | 874 | |
| 875 | .. versionadded:: 1.4 |
| 876 | |
| 877 | These views now return :class:`~django.template.response.TemplateResponse` |
| 878 | instances which allow you to easily customize the response data before |
| 879 | rendering. For more details, see the |
| 880 | :doc:`TemplateResponse documentation </ref/template-response>`. |
| 881 | |
875 | 882 | .. function:: logout(request, [next_page, template_name, redirect_field_name]) |
876 | 883 | |
877 | 884 | Logs a user out. |