We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Slots are designed in a way so that you have:
day
(as foreign key) ➡️ 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).
The text was updated successfully, but these errors were encountered: