Re: Adding ManyToMany field to django comments

2009-08-25 Thread grahamu
The solution I eventually used is to require that the reviewer queryset be stored in a session variable. Since this queryset is required in the template context in order for the templatetags to work, saving the value in a session variable isn't much to ask. Please let me know if you think this so

Adding ManyToMany field to django comments

2009-08-19 Thread grahamu
In general, I'm wondering how to retrieve a Queryset provided to a Form (choices for a ManyToMany field) from within a view that only accepts POST data from that form. This isn't really a question about extending django.contrib.comments, but that framework provides a good point of reference for th