Hello,
I'm trying to use django-multilingual for multilingual site, instead
of reinventing the wheel. But in admin interface I get:
"Something's wrong with your database installation. Make sure the
appropriate database tables have been created, and make sure the
database is readable by the appropriate user." for every translatable
model. For example, I have a model for blog entry:

class Entry(models.Model):
    author = models.ForeignKey(Author, related_name="entries")
    blog = models.ForeignKey(Blog, related_name="entries")
    pictures = models.ManyToManyField(Picture, blank=True,
                                      related_name="entries")
    comments_allowed = models.BooleanField(_("Comments allowed"))
    posted = models.DateTimeField(_("Date posted"), auto_now_add=True)

    class Translation(multilingual.Translation):
        title = models.CharField(_("Title"), maxlength=250,
                                 help_text=_("Title of the entry"))
        slug = models.SlugField(prepopulate_from=("name",))
        body = models.TextField(_("Body"))

As you see, it has both translatable and non-translatable fields. I'm
running Django-0.96 on python2.5. I use psycopg2 db adapter.
Eugene


--~--~---------~--~----~------------~-------~--~----~
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