Re: django-pluggables urlconf problem (NoReverseMatch TemplateSyntaxError)

2011-02-25 Thread Nowell Strite
Hey Andra, I will try and take a look at this this weekend or next week. Can you post your urls.py file that corresponds to the page generating the error and for the requested pluggable_url Thanks, Nowell On Feb 24, 10:15 am, Andre Terra wrote: > Hello, folks > > I'm trying

Re: Talk like a Pirate Middleware

2007-09-19 Thread Nowell
Jacob wrote something like this a while ago http://toys.jacobian.org/misc/pirate.py.txt On Sep 19, 5:26 am, Scott Benjamin <[EMAIL PROTECTED]> wrote: > Today I was looking for some middleware that would allow changing of > the text of a site into Pirate Talk without effecting the content, as >

Re: OR a Q object - Problem with ManyToMany relationships?

2007-08-02 Thread Nowell
I believe that this is due to the fact that the last Q is performing an INNER JOIN on the Authors table, and therefore is excluding all records that do not have an entry in your (what I assume is a) ManyToManyField/ForeignKey. On Aug 2, 5:37 pm, LaundroMat <[EMAIL PROTECTED]> wrote: > Hi, > > Sup

Re: ERD

2007-05-12 Thread Nowell
I believe you are referring to http://code.djangoproject.com/wiki/DjangoGraphviz On May 12, 3:08 pm, Lars Stavholm <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm going bananas looking for a ERD tool that was available on > thewww.djangoproject.comsite a year ago. I think it was mentioned together

Re: Saving ManyToMany relationships in custom manipulator

2006-08-30 Thread Nowell
I believe that the correct way to accomplish this is: temp = Message(...) temp.save() temp.teams = Team.objects.filter(id__in=data.getlist('teams')) Notice you need to use the getlist() function to return a list of the M2M selections, the previous code will return only the last element. --~--~