I have a Django form with a DateTimeField model, and I was wondering if there is a way to make sure that the date/time the user enters is always greater than the current time.
This is what I have in my form:
from django.db import models
from django import forms
import datetime
start_time = models.DateTimeField(
default=datetime.datetime.now(),
help_text='Format is: yyyy-mm-dd hh:mm:ss',
)