Hi

I have Users and based on some requirements, I have created a few User
Groups . e.g. I have a group of moderators.

Now, I am trying to create a form where a normal user can message the
moderators.

So, I have a model to be used by the form something like :

class Message(models.Model):
     moderator = models.ForeignKey(User)
     user= models.ForeignKey(User)
     text = models.TextField(max_length=1000)
     date = models.DateField(default=datetime.now())

I want the moderator field to have keys to only those people who are in the
group where name='Moderator'

I am not sure how to filter the ForeignKey in this case.


Why I want to do this --> is so that the form will have a dropdown list of
moderators to choose from by the user when it is displayed. User selects
the moderator, and enteres the message text - and sends it.

Regards,
Vibhu

-- 
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPiONwkfs%3DcTc5dMVVKdZAeRvR0vOTz6%2B03oL1FiG_%2BumJBOeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to