Further corrections

git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@8 cfb8ba98-e953-0410-9cff-959ffddf5974

committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974>

--HG--
extra : convert_revision : c96834e4636755e0267ea2d912c22729e96d780f
This commit is contained in:
leidel 2007-02-23 19:53:06 +00:00
parent bf5127ccc5
commit 7c5c4b3b4c

View file

@ -30,15 +30,15 @@ How to use it in your own django application
'myapp.template',
)
# Add ``myapp.template.loaders.database.load_template_source```to the
``TEMPLATE_LOADERS`` where "myapp" is the name of your django project
# Add ``myapp.template.loaders.database.load_template_source`` to the
``TEMPLATE_LOADERS`` where "myapp" is the name of your Django project
It should look something like this:
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
'websushi.template.loaders.database.load_template_source',
'myapp.template.loaders.database.load_template_source',
)
3. Sync your database via shell (hint: "./manage.py syncdb" within project dir)