Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit e9e40bc

Browse files
committed
quickfix: enable tutorial submissions
1 parent f87c911 commit e9e40bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

conference/models.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def createFromTitle(self, title, sub_title, conference, speaker,
539539
('t_45', 'Talk (45 mins)'),
540540
#('t_60', 'Talk (60 mins)'),
541541
('i_60', 'Interactive (60 mins)'),
542-
#('r_180', 'Training (180 mins)'),
542+
('r_180', 'Training (180 mins)'),
543543
('p_45', 'Poster session (45 mins)'),
544544
#('p_180', 'Poster session (180 mins)'),
545545
('n_60', 'Panel (60 mins)'),
@@ -752,10 +752,10 @@ def get_slides_url(self):
752752

753753
""" Return the slides URL (relative to the website)
754754
or None in case no slides are available.
755-
755+
756756
For externally hosted slides, the URL refers to an absolute URL
757757
(anything the speaker entered).
758-
758+
759759
"""
760760
if self.slides and self.slides.url:
761761
return self.slides.url or None
@@ -1181,12 +1181,12 @@ def get_description(self):
11811181
def get_all_track_names(self):
11821182

11831183
""" Return a set of internal track names to which this event applies.
1184-
1184+
11851185
"""
11861186
return set(track.track for track in self.tracks.all())
11871187

11881188
def json_dump(self):
1189-
1189+
11901190
(start, end) = self.get_time_range()
11911191
return {
11921192
'custom_description': self.custom,

0 commit comments

Comments
 (0)