Re: Messaging component

2007-11-16 Thread Samuel Adam
I have released my code for a private message system. It's quite powerful, the functions are all displayed in the templates. For example, if you don't want to have message history in the read view, just remove it in the templates. Django is really smart and won't trigger the SQL queries if it do

Re: Messaging component

2007-10-21 Thread Jon Atkinson
I'm not sure about anything which is ready-made, but this is quite easily accomplished with one model: class Message(models.Model): """This is a user-to-user message""" to = models.ForeignKey(User) from = models.ForeignKey(User) message = models.TextField(blank=Tru

Messaging component

2007-10-21 Thread Julien
Hi all, I'm a Django newbie, and was wondering if there was an existing component/app to manage private messaging features, so that registered users can send messages to each other, have an inbox, etc. Something like there is on community sites like Facebook, or forum apps like PHPBB. Your help