Return to Snippet

Revision: 38907
at January 10, 2011 10:07 by Affix


Initial Code
class Post(models.Model):
	entry_title = models.CharField(max_length=200)
	entry_content = models.TextField(max_length=5000)
	entry_category = models.ForeignKey(Category)
	def __unicode__(self):
		return self.entry_title

Initial URL
http://affix.me

Initial Description


Initial Title
Django tut Blog model 1

Initial Tags
django

Initial Language
Python