File diff f4c4009c4db3 → cb4b0fac3871
symposion/schedule/models.py
Show inline comments
...
 
@@ -80,8 +80,9 @@ class Slot(models.Model):
 
        Unassign the associated content with this slot.
 
        """
 
        if self.content and self.content.slot_id:
 
            self.content.slot = None
 
            self.content.save()
 
            presentation = self.content
 
            presentation.slot = None
 
            presentation.save()
 

	
 
    @property
 
    def content(self):