diff --git a/symposion/schedule/forms.py b/symposion/schedule/forms.py index 04e7b1968dc48aafdcfc765397a5dd44b8ce421b..d6be26fcb43af02348c2dc8d8a982fcc41fb679e 100644 --- a/symposion/schedule/forms.py +++ b/symposion/schedule/forms.py @@ -11,7 +11,7 @@ class SlotEditForm(forms.Form): def __init__(self, *args, **kwargs): self.slot = kwargs.pop("slot") super(SlotEditForm, self).__init__(*args, **kwargs) - if self.slot.kind.label == "talk": + if self.slot.kind.label in ["talk", "tutorial"]: self.fields["presentation"] = self.build_presentation_field() else: self.fields["content_override"] = self.build_content_override_field()