This following patch resolve this problem and can add other
possibilities:
http://code.djangoproject.com/ticket/7231
Please, test this patch if you are interested in joins and/or in
models translation.
If this feature is interesting for someone I could try to write some
standard join functions,
Hi,
I have the necessity to make a LEFT JOIN for a "translated" model
object.
See the example:
"""
from django.db import models
class Bulletin(models.Model):
pub_date = models.DateField()
class BulletinTranslation(model.Model):
title = models.CharField(max_length=128)
body = models.
2 matches
Mail list logo