Ticket #24519: 24519.diff

File 24519.diff, 999 bytes (added by Tim Graham, 9 years ago)
  • docs/intro/tutorial02.txt

    diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
    index 4337d02..185c837 100644
    a b system.  
    488488Customizing your *project's* templates
    489489--------------------------------------
    490490
    491 Create a ``templates`` directory in your project directory. Templates can
    492 live anywhere on your filesystem that Django can access. (Django runs as
    493 whatever user your server runs.) However, keeping your templates within the
    494 project is a good convention to follow.
     491Create a ``templates`` directory in your project directory (the one that
     492contains ``manage.py``). Templates can live anywhere on your filesystem that
     493Django can access. (Django runs as whatever user your server runs.) However,
     494keeping your templates within the project is a good convention to follow.
    495495
    496496Open your settings file (:file:`mysite/settings.py`, remember) and add a
    497497:setting:`DIRS <TEMPLATES-DIRS>` option in the :setting:`TEMPLATES` setting:
Back to Top