Changeset - 6f172da50ad9
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-12-20 06:50:26
lukeman@gmail.com
allow scheduling of tutorial types
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/schedule/forms.py
Show inline comments
...
 
@@ -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()
0 comments (0 inline, 0 general)