From 7c5c4b3b4cff879d7913a60b396fc434eb846c50 Mon Sep 17 00:00:00 2001 From: leidel Date: Fri, 23 Feb 2007 19:53:06 +0000 Subject: [PATCH] Further corrections git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@8 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel --HG-- extra : convert_revision : c96834e4636755e0267ea2d912c22729e96d780f --- template/README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/template/README b/template/README index 905e4bb..72af47f 100644 --- a/template/README +++ b/template/README @@ -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)