class Session(models.Model):
tutor = models.ForeignKey(User)
start_time = models.DateTimeField()
end_time = models.DateTimeField()
What is the best way to always prevent start_time from overlapping end_time ?
What is the best way to always prevent |
|||
|
|
|
First, you should do this at the form level, see Cleaning and validating fields that depend on each other for instructions on how to do this, it would look like this:
Also, you can enforce it at low level in the save method or in a pre_save signal:
But that's pretty low level so it's not user friendly. |
|||||||
|