Open micolous opened 7 years ago
Slots are designed in a way so that you have:
day
datetime.date
start_time
datetime.time
end_time
start_datetime and end_datetime compose these parameters into a (tz-naive) datetime.datetime object.
start_datetime
end_datetime
datetime.datetime
As a result, it is not possible to have a slot which runs over two different days (such as a talk from 23:30 - 00:30 the next day).
Slots are designed in a way so that you have:
day
(as foreign key) :arrow_right: hasdatetime.date
start_time
(asdatetime.time
)end_time
(asdatetime.time
)start_datetime
andend_datetime
compose these parameters into a (tz-naive)datetime.datetime
object.As a result, it is not possible to have a slot which runs over two different days (such as a talk from 23:30 - 00:30 the next day).