Changeset 6982
- Timestamp:
- 01/01/08 23:01:54 (9 months ago)
- Files:
-
- django/trunk/docs/sites.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/sites.txt
r6180 r6982 98 98 99 99 On a lower level, you can use the sites framework in your Django views to do 100 particular things based on whatsite in which the view is being called.100 particular things based on the site in which the view is being called. 101 101 For example:: 102 102 … … 331 331 332 332 * 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 }}``, 334 334 which is the ``Site`` object representing the current site. Also, the 335 335 hook for providing item URLs will use the ``domain`` from the current … … 337 337 338 338 * 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 }}``. 340 340 341 341 * The shortcut view (``django.views.defaults.shortcut``) uses the domain of
