diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index c01079c..482a5f5 100644
a
|
b
|
The login_required decorator
|
863 | 863 | .. _forms documentation: ../forms/ |
864 | 864 | .. _site framework docs: ../sites/ |
865 | 865 | |
| 866 | .. versionadded:: 1.4 |
| 867 | |
| 868 | This :func:`~views.login` view and the :ref:`other-built-in-views` now all |
| 869 | return :class:`~django.template.response.TemplateResponse` instances which |
| 870 | allows you to easily customize the response data before rendering. For more |
| 871 | details, see the |
| 872 | :doc:`TemplateResponse documentation </ref/template-response>`. |
| 873 | |
| 874 | .. _other-built-in-views: |
| 875 | |
866 | 876 | Other built-in views |
867 | 877 | -------------------- |
868 | 878 | |