Home | Trees | Indices | Help |
---|
|
django.db.models.Model --+ | Entry
|
|||
Meta |
|
|||
|
|||
|
|
|||
title = models.CharField(max_length= 200)
|
|||
slug = models.SlugField(editable= False)
|
|||
summary = models.CharField(max_length= 200, blank= True, null=
|
|||
body = models.TextField(help_text= "Use HTML.")
|
|||
tags = models.ManyToManyField(Tag)
|
|||
author = models.ForeignKey(User)
|
|||
is_draft = models.BooleanField("Draft", default= False, help_t
|
|||
published_on = models.DateTimeField(auto_now_add= True)
|
|||
modified_on = models.DateTimeField(auto_now= True, editable= F
|
|
summary
|
is_draft
|
modified_on
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Oct 30 11:31:02 2012 | http://epydoc.sourceforge.net |