Re: are you using mptt, treebeard or something else?

2009-09-13 Thread Tiago S.
What about django-easytree? I'm tempting to try it. http://bitbucket.org/fivethreeo/django-easytree/overview/ On Sep 4, 6:30 am, Aljosa Mohorovic wrote: > On Sep 3, 5:51 pm, Sandra Django wrote: > > > Sorry, a cuestion because I don't

Re: How to receive Emails in my django app

2009-01-18 Thread Tiago S.
Hi, Take a look on this opensource app. It's a helpdesk system and it receives email and process then afterward. http://code.google.com/p/jutda-helpdesk/ Regards, On Jan 16, 4:11 pm, zweb wrote: > i can send emails easily using django. > > I want to set up an email

Re: StringList Field Type

2009-01-06 Thread Tiago S.
Hello again Bruno! This solution is neat, thanks for that. I didn't know about getattr until now. Regards, Tiago On Jan 5, 9:05 pm, bruno desthuilliers wrote: > Well, then there's another simple denormalization: > > class Question(models.model): >     question

Re: StringList Field Type

2009-01-05 Thread Tiago S.
Hi Bruno, > > Then how do you store the number of votes per choice ? > My app is really a quiz with 5 answers per Question and multiples Question per Quiz. I used the Poll analogy to make easier to explain what I really need, as the django tutorial is about a Poll app. > > Overkill, nope. But

StringList Field Type

2009-01-05 Thread Tiago S.
Hi, I'm porting a app from GAE, which uses the StringList[1] property to store choices(simple strings) in the Poll model. I've read the django tutorial and there they make use of two models with a relationship between Choices and Polls. With my app, I don't see the need of an extra model, as a