On Mon, Sep 22, 2008 at 9:10 AM, tsmets <[EMAIL PROTECTED]> wrote:

> I am running 1.0 on sqlite3 and I keep on getting
> [snip]
> TemplateSyntaxError at /admin/
>
> Caught an exception while rendering: no such table: django_admin_log
>
> [snip]
> What is wrong in my set up ... ?
>

It seems you did not have  'django.contrib.admin' listed in your
INSTALLED_APPS when you ran syncdb.  So, check what you have in
INSTALLED_APPS.  If it does not include 'django.contrib.admin', add it.  You
need to re-run syncdb with 'django.contrib.admin' listed in INSTALLED_APPS
in order to get the tables admin uses created in the db.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to