There was an error while loading. Please reload this page.
1 parent 2e1e2b7 commit 788321dCopy full SHA for 788321d
1 file changed
ietf/meeting/models.py
@@ -532,6 +532,18 @@ def utc_end_time(self):
532
return local_end_time.astimezone(pytz.utc)
533
else:
534
return None
535
+ def local_start_time(self):
536
+ if self.tz():
537
+ local_start_time = self.tz().localize(self.time)
538
+ return local_start_time
539
+ else:
540
+ return None
541
+ def local_end_time(self):
542
543
+ local_end_time = self.tz().localize(self.end_time())
544
+ return local_end_time
545
546
547
548
@property
549
def js_identifier(self):
0 commit comments