it/itf/bestpractices/models.py

40 lines
1.2 KiB
Python
Raw Normal View History

2010-12-06 22:34:49 +00:00
from django.db import models
from tagging.fields import TagField
class BestPractice(models.Model):
title = models.CharField(max_length=512)
story = models.TextField()
guideline = models.TextField(blank=True)
law = models.TextField(blank=True)
theatre = models.TextField(blank=True, help_text="Spotlight on Theatre text")
2010-12-07 14:51:24 +00:00
quick_howto = models.TextField(blank=True)
2010-12-06 22:34:49 +00:00
tags = TagField(blank=True, help_text="Enter as many tags as you like, separated by commas.")
2010-12-07 14:51:24 +00:00
category = models.ForeignKey("BestPracticeCategory")
2010-12-06 22:34:49 +00:00
def __unicode__(self):
return self.title
2010-12-07 14:51:24 +00:00
class BestPracticeCategory(models.Model):
name = models.CharField(max_length=256)
description = models.TextField(blank=True)
def __unicode__(self):
return self.name
class BestPracticeLink(models.Model):
url = models.URLField()
text = models.TextField(blank=True)
bestpractice = models.ForeignKey(BestPractice)
def __unicode__(self):
return self.url
class BestPracticeImage(models.Model):
image = models.ImageField(upload_to='upload/images/bestpractices/')
caption = models.CharField(max_length=512, blank=True)
bestpractice = models.ForeignKey(BestPractice)
def __unicode__(self):
return self.caption