| Home | Trees | Indices | Help |
|
|---|
|
|
db.models.Model --+
|
FreeComment
|
|||
| Meta | |||
| Admin | |||
|
|||
|
|||
|
|||
|
|||
|
|||
content_type = models.ForeignKey(ContentType)
|
|||
object_id = models.IntegerField(_('object ID'))
|
|||
comment = models.TextField(_('comment'), max_length= 3000)
|
|||
person_name = models.CharField(_("person's name"), max_length=
|
|||
submit_date = models.DateTimeField(_('date/time submitted'), a
|
|||
is_public = models.BooleanField(_('is public'))
|
|||
ip_address = models.IPAddressField(_('ip address'))
|
|||
approved = models.BooleanField(_('approved by staff'))
|
|||
site = models.ForeignKey(Site)
|
|||
|
|||
Returns the object that this comment is a comment on. Returns None if the object no longer exists. |
|
|||
person_name
|
submit_date
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Fri Dec 14 15:24:05 2007 | http://epydoc.sourceforge.net |