Ticket #6287: 6287.diff

File 6287.diff, 1.4 KB (added by arien, 16 years ago)

fixes a thinko in addition to brace typos

  • docs/sites.txt

     
    9797----------------------------------------
    9898
    9999On a lower level, you can use the sites framework in your Django views to do
    100 particular things based on what site in which the view is being called.
     100particular things based on the site in which the view is being called.
    101101For example::
    102102
    103103    from django.conf import settings
     
    330330      retrieving flatpages to display.
    331331
    332332    * In the `syndication framework`_, the templates for ``title`` and
    333       ``description`` automatically have access to a variable ``{{{ site }}}``,
     333      ``description`` automatically have access to a variable ``{{ site }}``,
    334334      which is the ``Site`` object representing the current site. Also, the
    335335      hook for providing item URLs will use the ``domain`` from the current
    336336      ``Site`` object if you don't specify a fully-qualified domain.
    337337
    338338    * In the `authentication framework`_, the ``django.contrib.auth.views.login``
    339       view passes the current ``Site`` name to the template as ``{{{ site_name }}}``.
     339      view passes the current ``Site`` name to the template as ``{{ site_name }}``.
    340340
    341341    * The shortcut view (``django.views.defaults.shortcut``) uses the domain of
    342342      the current ``Site`` object when calculating an object's URL.
Back to Top