| Home | Trees | Indices | Help |
|---|
|
|
db.models.Model --+
|
Message
The message system is a lightweight way to queue messages for given users. A message is associated with a User instance (so it is only applicable for registered users). There's no concept of expiration or timestamps. Messages are created by the Django admin after successful actions. For example, "The poll Foo was created successfully." is a message.
|
|||
|
|||
|
|||
user = models.ForeignKey(User)
|
|||
message = models.TextField(_('message'))
|
|||
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Thu Apr 17 18:52:15 2008 | http://epydoc.sourceforge.net |