Using the manual Many to Many model as follows in revision 7188

#####################################
class Book(models:Model):
  name = models.CharField(max_length=64)

  class Admin:
    pass

class Author(models:Model):
  name = models.CharField(max_length=64)

  class Admin:
    pass

class Book_Int(models:Model):
  book = models.ForeignKey(Book)
  author = models.ForeignKey(Author)
  something = models. CharField(max_length=64)

  class Meta:
    ordering = ['publisher_book.name']
########################################

I've done a lot of searching but can't quite figure out if this is
something that:

a) Should work in said revision and I'm doing something wrong
b) Will be added in a queryset refactoring update
c) Will be added in a newforms update

Apologies if this is something I should have been able to figure out
myself. Constructive guidance for future inquiries welcomed.

Thanks,

-raymond





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