Fix typo in settings docs

This commit is contained in:
Tim Heap 2015-10-21 11:47:29 +11:00
parent 3d494fb24b
commit c9f73d3157

View file

@ -109,7 +109,7 @@ Then access the settings through ``{{ settings }}``:
{{ settings.app_label.SocialMediaSettings.instagram }}
If you are not in a ``RequestContext``, then context processors will not have run, and the ``settings`` variable will not be availble. To get the ``settings``, use the provided ``{% get_settings %}`` template tag. If a ``request`` is in the template context, but for some reason it is not a ``RequestContext``, just use ``{{ get_settings }}``:
If you are not in a ``RequestContext``, then context processors will not have run, and the ``settings`` variable will not be availble. To get the ``settings``, use the provided ``{% get_settings %}`` template tag. If a ``request`` is in the template context, but for some reason it is not a ``RequestContext``, just use ``{% get_settings %}``:
.. code-block:: html+django