no models in markupfield land

This commit is contained in:
Luke Hatcher 2012-08-30 22:57:58 -04:00
parent 40aede0839
commit fe29c708b9

View file

@ -62,8 +62,8 @@ class Presentation(models.Model):
slot = models.OneToOneField(Slot, null=True, blank=True, related_name="presentation") slot = models.OneToOneField(Slot, null=True, blank=True, related_name="presentation")
title = models.CharField(max_length=100) title = models.CharField(max_length=100)
description = models.MarkupField() description = MarkupField()
abstract = models.MarkupField() abstract = MarkupField()
speaker = models.ForeignKey("speakers.Speaker", related_name="presentations") speaker = models.ForeignKey("speakers.Speaker", related_name="presentations")
additional_speakers = models.ManyToManyField("speakers.Speaker", blank=True) additional_speakers = models.ManyToManyField("speakers.Speaker", blank=True)
cancelled = models.BooleanField(default=False) cancelled = models.BooleanField(default=False)